import type { TooltipPosition, TooltipState } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Tooltip from "./src/tooltip"; export declare const VTooltip: Install, string | number | null>; readonly position: BasicType, TooltipPosition | null>; readonly disabled: BasicType; readonly state: BasicType, TooltipState | null>; readonly noArrow: BasicType; readonly bold: BasicType; readonly bright: BasicType; readonly background: BasicType, string | null>; readonly fontColor: BasicType, string | null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, string | number | null>; readonly position: BasicType, TooltipPosition | null>; readonly disabled: BasicType; readonly state: BasicType, TooltipState | null>; readonly noArrow: BasicType; readonly bold: BasicType; readonly bright: BasicType; readonly background: BasicType, string | null>; readonly fontColor: BasicType, string | null>; }>>, { readonly bold: boolean; readonly background: string; readonly fontColor: string; readonly disabled: boolean; readonly position: TooltipPosition; readonly content: string | number; readonly state: TooltipState; readonly noArrow: boolean; readonly bright: boolean; }>>; /** tooltip 组件实例类型 */ export type TooltipInstance = InstanceType; export * from './src/interface'; export default VTooltip;