import "./MapUrlDialog.scss"; import * as React from "react"; interface ConfirmMessageDialogProps { /** Title to show in title bar of dialog */ title?: string | React.JSX.Element; className?: string; message?: string | React.JSX.Element; opened: boolean; onYesResult?: () => void; onNoResult?: () => void; minWidth?: string | number; /** Minimum height that the dialog may be resized to. Displayed in px if value is a number; otherwise, displayed in specified CSS unit. Default: 100px */ minHeight?: string | number; /** Maximum width that the dialog may be resized to. Displayed in px if value is a number; otherwise, displayed in specified CSS unit. */ maxWidth?: string | number; /** Maximum height that the dialog may be resized to. Displayed in px if value is a number; otherwise, displayed in specified CSS unit. */ maxHeight?: string | number; } export declare function ConfirmMessageDialog(props: ConfirmMessageDialogProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ConfirmMessageDialog.d.ts.map