export type Size = {
    width: number;
    height: number;
};
export declare const updateAllElementsSizes: () => void;
export declare const useElementSize: (ref: React.RefObject<HTMLElement | null>) => Size | null;
