import { TagProps } from 'antd'; import React from 'react'; import './index.less'; interface TagExtraProps { type?: 'warning' | 'primary' | 'error' | 'success' | 'default'; size?: 'large' | 'small' | 'middle'; border?: boolean; select?: boolean; isSelected?: boolean; disabled?: boolean; maxWidth?: string; isEdit?: boolean; onInput?: (v: any) => void; inputProps?: any; } declare const Tag: ({ size, select, isSelected, disabled, maxWidth, type, isEdit, border, onInput, className, inputProps, ...props }: TagProps & TagExtraProps) => React.JSX.Element; export { Tag };