/// export interface TagProps { closable?: boolean; onClose?: (e: React.MouseEvent) => void; visible?: boolean; imageSrc?: string; children: string; disabled?: boolean; error?: boolean; height?: number; readonly className?: string; } declare const Tag: ({ closable, onClose, visible, imageSrc, children, disabled, error, height, className, }: TagProps) => JSX.Element; export { Tag }; //# sourceMappingURL=index.d.ts.map