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