import React from "react";
import "./Ui89ModalDialog.css";
export interface Ui89ModalDialogProps {
    open: boolean;
    size?: string;
    children?: React.ReactNode;
    topCenter?: React.ReactNode;
    onRequestClose?: () => void;
}
export declare function Ui89ModalDialog({ open, size, children, topCenter, onRequestClose, }: Ui89ModalDialogProps): React.JSX.Element;
