import type { ExtractPropTypes, PropType } from 'vue'; export declare const tooltipProps: { modelValue: { type: BooleanConstructor; default: undefined; }; content: { type: StringConstructor; default: string; }; position: { type: PropType<"bottom" | "left" | "right" | "top" | "br" | "rt" | "tr" | "tl" | "bl" | "lt" | "lb" | "rb">; default: string; }; backgroundColor: { type: StringConstructor; default: undefined; }; renderTo: { type: PropType; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; effect: { type: PropType<"dark" | "light">; default: string; }; popupClass: { type: StringConstructor; }; size: { type: PropType<"mini">; default: undefined; }; }; export type TooltipProps = ExtractPropTypes;