import type { DialogProps } from '@mui/material';
interface Props extends DialogProps {
    header?: React.ReactNode;
    onCancel: () => void;
    onSubmit: () => void;
    cancelText?: string;
    submitText?: string;
}
declare const ConfirmDialog: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default ConfirmDialog;
