import React, { CSSProperties } from 'react'; export interface TagProps { closable?: boolean; onClose?: (e: React.MouseEvent) => void; visible?: boolean; imageSrc?: string; title: string; disabled?: boolean; error?: boolean; height?: number; readonly className?: string; style?: CSSProperties; } declare const Tag: ({ closable, onClose, imageSrc, title, disabled, className, style }: TagProps) => import("react/jsx-runtime").JSX.Element; export { Tag };