/** * Props of useResizeObserver hook. */ export interface UseResizeObserverProps { /** * The handler for the resizing event, called when the size of any observed elements changes. */ onResize: ResizeObserverCallback; /** * Elements whose size changes should be tracked. */ observables: Element[]; /** * Delay (in milliseconds) before calling the onResize handler. */ delay?: number; } /** * Hook that provides the ability to observe size changes of various elements. * @returns An observer that tracks size changes of the observed elements. */ export declare function useResizeObserver(props: UseResizeObserverProps): ResizeObserver; //# sourceMappingURL=useResizeObserver.d.ts.map