import React from 'react';
import { DialogProps as MuiDialogProps } from '@mui/material';
import { ReactNode } from 'react';
export interface DialogProps extends Omit<MuiDialogProps, 'content'> {
    title: string;
    content: ReactNode;
    helpText?: string;
}
export declare const Dialog: (props: DialogProps) => React.ReactNode;
//# sourceMappingURL=MuiDialog.d.ts.map