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