import { FC } from 'react'; import { InputComponentProps } from '@balgamat/react-autoform'; import { IComboBoxProps } from 'office-ui-fabric-react/lib/ComboBox'; import { ComboBoxOption, IOptions } from './types'; export declare type ComboBoxProps = InputComponentProps & Partial & IOptions>>; export declare const ComboBox: FC;