import type { ExtractPropTypes } 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: import("element-plus/es/utils").EpPropFinalized; readonly hideAfter: import("element-plus/es/utils").EpPropFinalized; readonly teleported: import("element-plus/es/utils").EpPropFinalized; readonly persistent: BooleanConstructor; readonly width: 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) => boolean; }; export declare type PopconfirmEmits = typeof popconfirmEmits; export declare type PopconfirmProps = ExtractPropTypes; export declare type PopconfirmInstance = InstanceType;