import { FC } from 'react'; import type { TagProps as AntdTagProps } from 'tntd/lib/tag'; export interface TagProps extends AntdTagProps { text?: string; } export declare const Tag: FC; export default Tag;