/** * Window size dimensions */ export type WindowSize = { width: number; height: number; }; /** * Hook that tracks window size * * @returns Current window dimensions * * @example * ```tsx * const Component = () => { * const { width, height } = useWindowSize(); * return
Window: {width}x{height}
; * }; * ``` */ export declare function useWindowSize(): WindowSize; //# sourceMappingURL=useWindowSize.d.ts.map