UNPKG

678 BTypeScriptView Raw
1import type { ModalFuncProps } from './Modal';
2interface ConfirmDialogProps extends ModalFuncProps {
3 afterClose?: () => void;
4 close?: (...args: any[]) => void;
5 autoFocusButton?: null | 'ok' | 'cancel';
6 rootPrefixCls: string;
7 iconPrefixCls?: string;
8}
9declare const _default: import("vue").DefineComponent<ConfirmDialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ConfirmDialogProps>, {
10 appContext: any;
11 parentContext: any;
12}>;
13export default _default;