import * as React from 'react'; import { TagProps as AntdTagProps } from 'antd/es/tag'; export interface TagProps extends AntdTagProps { /** * The content to display in the tag */ children?: React.ReactNode; /** * Whether the tag is closable */ closable?: boolean; /** * Custom close icon */ closeIcon?: React.ReactNode; /** * Color of the tag */ color?: string; /** * Custom icon element */ icon?: React.ReactNode; /** * Callback executed when close button is clicked */ onClose?: (e: React.MouseEvent) => void; /** * Custom style for the tag */ style?: React.CSSProperties; /** * Whether the tag is visible */ visible?: boolean; } declare const Tag: React.FC; export default Tag;