/** * useWindowSize hook * * Returns the current window size with the following properties: * - width (number): the width of the window * - height (number): the height of the window * - isMobile (boolean): whether the window is a mobile device * - isTablet (boolean): whether the window is a tablet device * - isDesktop (boolean): whether the window is a desktop device * * The hook will automatically update the state when the window is resized. * * @returns {{width: number, height: number, isMobile: boolean, isTablet: boolean, isDesktop: boolean}} */ export declare function useWindowSize(): { width: number; height: number; isMobile: boolean; isTablet: boolean; isDesktop: boolean; };