import { Component } from 'vue'; export type TypeInsterface = 'info' | 'primary' | 'success' | 'warning' | 'danger'; export interface BadgeProps { image?: string; type?: TypeInsterface; icon?: Component; }