/** * @description 多选输入框 */ import React from 'react'; import type { Option, Options } from 'jamis-core'; import type { BaseSelectionProps, ItemRenderStates } from '../types'; declare function itemRender(option: Option, states: ItemRenderStates): JSX.Element; export declare class BaseSelection extends React.Component { static itemRender: typeof itemRender; static defaultProps: { placeholder: string; itemRender: typeof itemRender; multiple: boolean; clearable: boolean; }; static value2array(value: any, options: Options, option2value?: (option: Option) => any): Options; static resolveSelected(value: any, options: Options, option2value?: (option: Option) => any): Option | null; intersectArray(arr1: undefined | Array