import type { ConfigurableWindow } from "../_configurable"; export interface WindowSizeOptions extends ConfigurableWindow { initial_width?: number; initial_height?: number; /** * Listen to window `orientationchange` event * * @default true */ listen_orientation?: boolean; /** * Whether the scrollbar should be included in the width and height * @default true */ include_scrollbar?: boolean; } /** * Reactive window size. * * @param options */ export declare function window_size(options?: WindowSizeOptions): { width: import("svelte/store").Readable; height: import("svelte/store").Readable; }; export { window_size as windowSize };