| 123456789101112131415 |
- import type { ModalFuncProps, ModalLocale } from './Modal';
- interface ConfirmDialogProps extends ModalFuncProps {
- afterClose?: () => void;
- close?: (...args: any[]) => void;
- autoFocusButton?: null | 'ok' | 'cancel';
- rootPrefixCls: string;
- iconPrefixCls?: string;
- /** @private Internal Usage. Do not override this */
- locale?: ModalLocale;
- }
- declare const _default: import("vue").DefineComponent<ConfirmDialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ConfirmDialogProps>, {
- appContext?: any;
- parentContext?: any;
- }, {}>;
- export default _default;
|