import { type ModalContextProviderProps } from './ModalContextProvider.js'; /** * An OverlayProvider acts as a container for the top-level application. * Any application that uses modal dialogs or other overlays should * be wrapped in a ``. This is used to ensure that * the main content of the application is hidden from screen readers * if a modal or other overlay is opened. Only the top-most modal or * overlay should be accessible at once. * @public */ export declare function OverlayProvider(props: ModalContextProviderProps): import("react/jsx-runtime.js").JSX.Element;