UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 372 B
/// <reference types="react" /> import { ModalFuncProps } from './Modal'; interface ConfirmDialogProps extends ModalFuncProps { afterClose?: () => void; close: (...args: any[]) => void; autoFocusButton?: null | 'ok' | 'cancel'; rootPrefixCls: string; } declare const ConfirmDialog: (props: ConfirmDialogProps) => JSX.Element; export default ConfirmDialog;