import React from 'react'; import { SelectContainer } from '../SelectComponents/SelectContainer/SelectContainer'; import { CommonSelectProps } from '../SelectComponents/types'; declare type SelectContainerProps = React.ComponentProps; export declare type ComboboxSelectProps = CommonSelectProps & Omit & { value?: ITEM | null | undefined; onChange?(v: ITEM | null): void; onCreate?(str: string): void; getGroupOptions?(group: ITEM): ITEM[]; labelForCreate?: string; labelForNotFound?: string; }; declare type ComboboxType = (props: ComboboxSelectProps) => React.ReactElement | null; export declare const Combobox: ComboboxType; export {};