import type { ReactNode } from "react";
import type React from "react";
interface OverlayProps {
    children?: ReactNode;
    onClick?: () => void;
    isClosing?: boolean;
}
export declare function Overlay({ children, onClick, isClosing }: OverlayProps): React.ReactPortal;
export {};
