export interface WindowSize {
    width: number;
    height: number;
}
export declare const useWindowSize: () => WindowSize;
