import type { DefineComponent } from "vue"; /** Tooltip component props */ export interface TooltipProps { show?: boolean; dark?: boolean; title?: string | number | Record | any[]; color?: string; disabled?: boolean; size?: string; width?: number | string; /** default: top */ placement?: any; show?: boolean; } /** Tooltip Vue 3 component */ declare const Tooltip: DefineComponent; export default Tooltip;