import type { Ref } from 'react'; interface Size { width: number; height: number; } declare function useElementSize(providedRef?: Ref): Size; export default useElementSize;