import React from 'react'; import { SelectContainer } from '../SelectComponents/SelectContainer/SelectContainer'; import { CommonSelectProps } from '../SelectComponents/types'; declare type SelectContainerProps = React.ComponentProps; export declare const multiComboboxPropSize: readonly ["m", "s", "l"]; export declare type MultiComboboxPropSize = typeof multiComboboxPropSize[number]; export declare const multiComboboxPropSizeDefault: "m"; export declare type MultiComboboxProps = Omit, 'options'> & Omit & { onChange?: (v: ITEM[] | null) => void; onCreate?: (str: string) => void; labelForCreate?: string; labelForNotFound?: string; value?: ITEM[] | null; size?: MultiComboboxPropSize; } & ({ options: ITEM[]; getGroupOptions: never; } | { options: GROUP[]; getGroupOptions?: (group: GROUP) => ITEM[]; }); declare type MultiCombobox = (props: MultiComboboxProps) => React.ReactElement | null; export declare const MultiCombobox: MultiCombobox; export {};