/// import { Option } from '../AyForm/ay-form'; declare type ValueType = Array | string | number | undefined; interface AyTagGroupProps { value?: any; onChange?: (values: ValueType) => void; /** 是否支持选择多个 */ multiple?: boolean; /** 选项 */ options?: Array