/** * A hook that tracks the window dimensions. * Automatically updates when the window is resized. * * @returns An object with width and height of the window * * @example * ```tsx * const { width, height } = useWindowSize() * * return ( *
* Window size: {width} x {height} * {width < 768 && } *
* ) * ``` */ export declare function useWindowSize(): { width: number; height: number; }; //# sourceMappingURL=useWindowSize.d.ts.map