import React from "react";
import { DialogProps } from "@material-ui/core/Dialog";
export declare type SimpleDialogProps = DialogProps & {
    actions: React.ReactNode;
    children: any;
    id: string;
    maxWidth: string;
    onClose: () => void;
    open: boolean;
    title: string;
};
declare const _default: ({ onClose, id, maxWidth, open, title, children, actions, ...props }: SimpleDialogProps) => JSX.Element;
export default _default;
