export interface LayoutContext { totalWidth: number; totalHeight: number; clientWidth: number; clientHeight: number; } export declare const LayoutContext: import("react").Context; export declare const useLayoutContext: () => LayoutContext;