import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; import type Popconfirm from './popconfirm.vue'; export declare const popconfirmProps: { readonly title: StringConstructor; readonly confirmButtonText: StringConstructor; readonly cancelButtonText: StringConstructor; readonly confirmButtonType: import("element-plus/es/utils").EpPropFinalized; readonly cancelButtonType: import("element-plus/es/utils").EpPropFinalized; readonly icon: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown, () => any, boolean>; readonly iconColor: import("element-plus/es/utils").EpPropFinalized; readonly hideIcon: BooleanConstructor; readonly hideAfter: import("element-plus/es/utils").EpPropFinalized; readonly effect: { readonly default: "light"; readonly type: import("vue").PropType string) | (() => import("element-plus").PopperEffect) | ((new (...args: any[]) => string) | (() => import("element-plus").PopperEffect))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; readonly __epPropKey: true; }; readonly teleported: import("element-plus/es/utils").EpPropFinalized; readonly persistent: BooleanConstructor; readonly width: import("element-plus/es/utils").EpPropFinalized; readonly closeOnPressEscape: import("element-plus/es/utils").EpPropFinalized; }; export declare const popconfirmEmits: { /** * @description triggers when click confirm button */ confirm: (e: MouseEvent) => boolean; /** * @description triggers when click cancel button */ cancel: (e: MouseEvent | KeyboardEvent) => boolean; }; export type PopconfirmEmits = typeof popconfirmEmits; export type PopconfirmProps = ExtractPropTypes; export type PopconfirmPropsPublic = __ExtractPublicPropTypes; export type PopconfirmInstance = InstanceType & unknown;