import { TagProps } from '../tag'; import { FieldString } from '../_utils/types'; export interface TagData { value?: string | number; label?: string; closable?: boolean; tagProps?: TagProps; [other: string]: any; } export declare type InputTagFieldNames = FieldString; export interface TagDataInfo extends TagData { raw: Record; value: string | number; label: string; closable: boolean; }