import type { QuestionnaireItem, QuestionnaireItemAnswerOption } from 'fhir/r4'; import type { ReactNode } from 'react'; interface ChoiceRadioGroupProps { qItem: QuestionnaireItem; options: QuestionnaireItemAnswerOption[]; valueRadio: string | null; feedback: string; feedbackSeverity?: 'error' | 'warning'; readOnly: boolean; expressionUpdated: boolean; answerOptionsToggleExpressionsMap: Map; isTabled: boolean; instructionsId?: string | undefined; onCheckedChange: (newValue: string) => void; onClear: () => void; children?: ReactNode; } declare function RadioFormGroup(props: ChoiceRadioGroupProps): import("react/jsx-runtime").JSX.Element; export default RadioFormGroup;