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