import { ClassType } from '../../../utils'; import { ExtractPropTypes, PropType, StyleValue } from 'vue'; import type Popover from './Popover.vue'; export declare const popoverEmits: string[]; export declare const popoverProps: { appendToBody: { type: BooleanConstructor; default: undefined; }; content: { type: StringConstructor; default: string; }; popperStyle: { type: PropType; }; popperClass: { type: PropType; }; enterable: { type: BooleanConstructor; default: boolean; }; effect: { type: StringConstructor; default: string; }; teleported: { type: BooleanConstructor; default: boolean; }; title: StringConstructor; width: { type: (StringConstructor | NumberConstructor)[]; default: number; }; }; export declare type PopoverProps = ExtractPropTypes; export declare type PopoverEmits = typeof popoverEmits; export declare type PopoverInstance = InstanceType;