/// <reference types="react" />
interface ComponentSize {
    width: number;
    height: number;
}
export declare function useElementSize<T = any>(ref: React.RefObject<T>, throttleDuration?: number): ComponentSize;
export {};
