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