/// export interface Props { text?: string; color?: "red" | "orange" | "yellow" | "lime" | "green" | "cyan" | "blue" | "purple" | "pink"; className?: string; children?: any; } declare const Tag: ({ text, color, children, className }: Props) => JSX.Element; export default Tag;