1import type { CSSProperties } from 'react'; 2 3export interface Ref<T extends HTMLElement | SVGElement> { 4 readonly current: T | null; 5} 6 7export interface Style extends CSSProperties {}