import React from 'react'; import { DialogProps as MuDialogProps } from '@material-ui/core'; interface StyleProps { width?: string | number; height?: string | number; } export interface DialogProps extends MuDialogProps, StyleProps { title?: string; subtitle?: string; onClose?: () => void; footerActions?: React.ComponentType; titleActions?: React.ComponentType; enableCloseButton?: boolean; } declare const Dialog: React.FC; export { Dialog };