import React from "react"; import { TagProps } from "antd"; import { PresetColorType, PresetStatusColorType } from "antd/lib/_util/colors"; import { LiteralUnion } from "antd/lib/_util/type"; export declare const ExtendTagTypes: ["primary", "primary-bg", "secondary"]; export declare type IExtendTagType = typeof ExtendTagTypes[number]; export interface ITagProps extends Omit { color?: LiteralUnion; } declare const TagComponent: React.FC; export default TagComponent;