interface WindowSize { width: number; height: number; } /** * A hook that tracks window dimensions with optional throttling. * @param throttleMs Optional throttle delay in milliseconds * @returns Object containing current window width and height */ export declare function useWindowSize(throttleMs?: number): WindowSize; export {};