/// export declare type TAllowedColors = 'blue' | 'yellow' | 'red' | 'green' | 'purple' | 'gray'; export interface Props { title: string; color: TAllowedColors; } export declare const Tag: ({ title, color }: Props) => JSX.Element;