import React from 'react'; export interface ITagProps { variant?: 'green' | 'red' | 'orange' | 'gray' | 'blue' | 'white'; block?: boolean; className?: string; shape?: 'circle' | 'square'; children: React.ReactNode; cy?: string; } declare const Tag: React.FC; export default Tag;