import type React from "react";
export interface ModalProps {
    open: boolean;
    children: React.ReactElement;
    className?: string;
}
export declare function DeprecatedModal({ open, className, children }: ModalProps): import("react/jsx-runtime").JSX.Element;
