import type { EllipsisTooltipProps } from '../ellipsis'; export declare const TAG_COLORS: readonly ["red", "orangered", "orange", "gold", "lime", "green", "cyan", "blue", "sdblue", "purple", "pinkpurple", "magenta", "gray"]; export type TagColor = (typeof TAG_COLORS)[number]; export interface TagProps { color?: string; size?: 'small' | 'medium' | 'large'; bordered?: boolean; visible?: boolean; defaultVisible?: boolean; loading?: boolean; closable?: boolean; checkable?: boolean; checked?: boolean; defaultChecked?: boolean; nowrap?: boolean; ellipsis?: boolean; ellipsisLineClamp?: number | string; ellipsisExpandTrigger?: 'click'; ellipsisTooltip?: boolean | EllipsisTooltipProps; ellipsisPerformant?: boolean; textColor?: string; backgroundAlpha?: number; }