import { InputComponentProps } from '@balgamat/react-autoform'; import { IChoiceGroupProps } from 'office-ui-fabric-react/lib/ChoiceGroup'; import { FC } from 'react'; import { ChoiceGroupOption, IOptions } from './types'; export declare type ChoiceGroupProps = InputComponentProps & Partial> & Partial>>; export declare const ChoiceGroup: FC;