import { ReactElement } from "react";
interface OverlayProps {
open: boolean;
}
/**
* Overlay Component
*
* Purely visual dimming backdrop rendered behind an open modal ``. Dismiss
* handling (Escape, outside-press) is owned by ``'s Floating UI wiring —
* clicking the overlay dispatches `onClose` via `useDismiss`'s `outsidePress`
* detection, not via a click handler on this component. Rendered only when the parent
* drawer resolves to `variant="modal"`.
*
* @param {object} props - The Overlay component properties
* @param {boolean} props.open - Open status of the Overlay
* @returns {ReactElement} The Overlay component
*/
export declare const Overlay: ({ open }: OverlayProps) => ReactElement;
export {};