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