export type TagState = 'default' | 'primary' | 'info' | 'success' | 'error' | 'warning';
export type TagNamedColor = 'lime' | 'pink' | 'magenta' | 'tomato' | 'orange' | 'cyan' | 'navy' | 'gold' | 'purple';
export type TagType = TagState | TagNamedColor;
export interface TagSlots {
    prefix?: () => any;
    suffix?: () => any;
    default?: () => any;
}
