///
import { FieldProps } from '../utils/withField';
import { BaseSelectProps } from './BaseSelect';
import { Option } from './Select';
export interface MultiSelectProps extends Omit, 'value' | 'component' | 'options' | 'onChange' | 'selectMarker'> {
/**
* Selects items in the dropdown menu.
* Must pre-exist in the dropdown menu and written in lowercase.
* Otherwise no value is selected.
*/
readonly value: ReadonlyArray;
/**
* Used to create an array of selectable options.
*/
readonly options: ReadonlyArray