import { RefObject } from 'react'; type Size = { width: number; height: number; }; export declare function useElementSize({ delay, detectSizes }?: { delay?: number; detectSizes?: 'width' | 'height' | 'both'; }): [ Size, RefObject ]; export {};