import { ExtractPropTypes, PropType } from 'vue'; import { ButtonSize } from '../../button'; type trigger = 'click' | 'hover'; export declare const tipProps: { readonly modelValue: { readonly type: BooleanConstructor; readonly default: false; }; readonly disabled: { readonly type: PropType; readonly default: () => boolean; readonly validator: (value: any) => any; }; readonly content: { readonly type: StringConstructor; readonly default: ""; }; readonly trigger: { readonly type: PropType; readonly default: "hover"; }; readonly size: { readonly type: PropType; }; readonly placement: { readonly type: PropType; readonly default: "top-start"; }; }; export type TipProps = ExtractPropTypes; export {};