import { HTMLAttributes } from 'react'; export interface TagProps extends HTMLAttributes { state?: 'default' | 'error'; removable?: boolean; onClose?: React.MouseEventHandler; containerProps?: Omit, 'children'>; } export declare const Tag: import("react").ForwardRefExoticComponent>;