import { ReactNode } from "react"; import { DialogProps } from "@mui/material/Dialog"; export interface IDialogProps extends DialogProps { open: boolean; onClose: () => void; children?: ReactNode; showDialogFooter?: boolean; buttonAction?: ReactNode; title: string; height?: string | number; width?: string | number; } export declare const DialogFooter: ({ children }: { children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; declare const Dialog: ({ open, onClose, children, buttonAction, showDialogFooter, title, height, width, ...otherProps }: IDialogProps) => import("react/jsx-runtime").JSX.Element; export default Dialog;