import { FC } from 'react'; import { InputComponentProps } from '@balgamat/react-autoform'; import { IDropdownProps } from 'office-ui-fabric-react/lib/Dropdown'; import { DropdownOption, IOptions } from './types'; export declare type DropdownProps = InputComponentProps & Partial & IOptions>>; export declare const Dropdown: FC;