import type { Component, 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-next/vue-utils").EpPropFinalized; readonly cancelButtonType: import("@element-plus-next/vue-utils").EpPropFinalized; readonly icon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp) | ((new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp))[], unknown, unknown, Component, boolean>; readonly iconColor: import("@element-plus-next/vue-utils").EpPropFinalized; readonly hideIcon: import("@element-plus-next/vue-utils").EpPropFinalized; readonly hideAfter: import("@element-plus-next/vue-utils").EpPropFinalized; readonly onConfirm: { readonly type: import("@vue/runtime-core").PropType<(e: Event) => Promise | void>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly onCancel: { readonly type: import("@vue/runtime-core").PropType<(e: Event) => Promise | void>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly teleported: import("@element-plus-next/vue-utils").EpPropFinalized; readonly persistent: BooleanConstructor; readonly width: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type PopconfirmProps = ExtractPropTypes; export declare type PopconfirmInstance = InstanceType;