import type { DefineComponent } from "vue"; /** Badge component props */ export interface BadgeProps { count?: string | number; dot?: boolean; color?: string; /** default: default */ status?: string; text?: string; /** default: 99 */ maxCount?: number; } /** Badge Vue 3 component */ declare const Badge: DefineComponent; export default Badge;