import { FC } from 'react'; interface TagProps { color?: string; text: string; } declare const CustomTag: FC; export default CustomTag;