import type { ContextModalProps } from "@mantine/modals";
import type { ReactNode } from "react";
export declare function OverlayModal({ context, id, innerProps: { content }, }: ContextModalProps<{
    content?: ReactNode;
}>): ReactNode;
export declare namespace OverlayModal {
    var defaultTitle: undefined;
    var modalProps: {
        withCloseButton: boolean;
        classNames: {
            size: string;
            root: string;
            content: string;
            title: string;
            body: string;
        };
    };
}
