import { default as React } from 'react'; import { ChoiceGroupItemType, ChoiceGroupValue } from './choice-group.types'; export interface IChoiceGroupContext { name: string; inputType: ChoiceGroupItemType; currentValue: ChoiceGroupValue; onChange: (value: string, checked: boolean) => void; } export declare const ChoiceGroupContext: React.Context;