import { CSSProperties } from 'vue'; export interface TooltipProps { type?: TooltipType; color?: string; textColor?: string; popperClass?: string; popperStyle?: CSSProperties; } export type TooltipType = 'primary' | 'success' | 'danger' | 'warning' | 'info';