/** * OverlayContext * * Provides overlay visibility state (show/setShow pairs) to components via * React Context, eliminating ~65 overlay props from AppViewRouterProps. * * @since v2.8.1 */ import { type ReactNode } from 'react'; import type { useOverlays } from '../../hooks/useOverlays.js'; export type OverlayContextValue = ReturnType; export declare function OverlayProvider({ children, value }: { children: ReactNode; value: OverlayContextValue; }): React.ReactElement; export declare function useOverlayContext(): OverlayContextValue; //# sourceMappingURL=overlay-context.d.ts.map