import { BasePropsType, BaseFormItemTypeWithOutFocus } from '../_internal'; export interface SelectorItemType { text: string; value: T; subText?: string; disabled?: boolean; } export interface SelectorPropsType extends BasePropsType, Omit, 'id'> { items: SelectorItemType[]; activeItemClassName?: string; multiple?: boolean; value?: T[]; defaultValue?: T[]; }