import { ReactNode } from "react"; interface Props { color?: string; text?: string; subFix?: ReactNode; children?: ReactNode; onClick?: (e: any) => void; } declare function Tag({ color, children, text, className, subFix, style, onClick, }: Props & ClassNameAndStyle): JSX.Element; export default Tag;