import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; import type Popover from './popover.vue'; export declare const popoverProps: { readonly trigger: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, "hover", boolean>; readonly triggerKeys: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => string[], boolean>; readonly placement: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, "bottom", boolean>; readonly disabled: BooleanConstructor; readonly visible: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, null, boolean>; readonly transition: StringConstructor; readonly popperOptions: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => {}, boolean>; readonly tabindex: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, 0, boolean>; readonly content: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly popperStyle: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly popperClass: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly enterable: { readonly default: true; readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; readonly __epPropKey: true; }; readonly effect: { readonly default: "light"; readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; readonly __epPropKey: true; }; readonly teleported: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly appendTo: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly title: StringConstructor; readonly width: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly offset: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly showAfter: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly hideAfter: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly autoClose: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly showArrow: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly persistent: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly 'onUpdate:visible': { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type PopoverProps = ExtractPropTypes; export type PopoverPropsPublic = __ExtractPublicPropTypes; export declare const popoverEmits: { 'update:visible': (value: boolean) => boolean; 'before-enter': () => boolean; 'before-leave': () => boolean; 'after-enter': () => boolean; 'after-leave': () => boolean; }; export type PopoverEmits = typeof popoverEmits; export type PopoverInstance = InstanceType & unknown;