export declare const WindowProvider: import("solid-js/types/reactive/signal").ContextProviderComponent<(Window & typeof globalThis) | undefined>; /** * The document "window" placed in context. Helpful for determining * SSR context, or when rendering into an iframe. * * @returns the current window */ export declare function useWindow(): (Window & typeof globalThis) | undefined; export default useWindow;