import React from 'react'; export declare const TagTypes: ["status", "attribute", "text", "edit"]; export declare type TagType = typeof TagTypes[number]; export declare const TagColors: ["process", "success", "warning", "error", "end", "expired"]; export declare type TagColor = typeof TagColors[number]; export declare const TagSizes: ["small", "middle", "large"]; export declare type TagSize = typeof TagSizes[number]; export interface ITagProps { className?: string; clickable?: boolean; closable?: boolean; closeIcon?: React.ReactNode; color?: TagColor | string; disabled?: boolean; icon?: React.ReactNode; size?: TagSize; style?: React.CSSProperties; type?: TagType; onClick?: React.MouseEventHandler; onClose?: React.MouseEventHandler; children?: React.ReactNode; title?: string; customCloseProps?: unknown; } declare const Tag: React.ForwardRefExoticComponent>; export default Tag;