import type { WindowSize } from './breakpoints'; /** * Detection options for window width */ export interface WindowSizeDetectionOptions { debounceResize?: boolean; debounceDelay?: number; ignoreWindowSize?: boolean; } /** * Encapsulates detection of window dimensions * @param props * @returns Screen with in pixels */ export declare function useDetectWindowSize(props: WindowSizeDetectionOptions): WindowSize; //# sourceMappingURL=useDetectWindowSize.d.ts.map