import { type WindowContextValue, type WindowProviderProps } from './WindowProvider.types'; /** * Custom hook to access the window context. */ export declare function useWindow(): WindowContextValue; /** * Custom hook to access the root element from the window context. */ export declare function useRootElement(): HTMLElement; /** * Component provider for the window context. * This component wraps its children in the WindowContextProvider, supplying * the window object and its root element to the context for consumption */ export declare function WindowProvider({ window, children }: WindowProviderProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=WindowProvider.d.ts.map