import { default as React } from 'react'; import { DialogProps } from '@mui/material'; export interface EliceDialogProps extends Omit { open?: boolean; onClose?: () => void; title?: React.ReactNode; content?: React.ReactNode; children?: React.ReactNode; anchorElement?: React.ReactNode; type?: 'YesOrNo' | 'OK'; onConfirm?: VoidFunction; onAgree?: VoidFunction; onDisagree?: VoidFunction; } declare const EliceDialog: ({ open: controlledOpen, onClose: controlledOnClose, title, content, children, anchorElement, type, onConfirm, onAgree, onDisagree, sx, ...dialogProps }: EliceDialogProps) => import("react/jsx-runtime").JSX.Element; export default EliceDialog;