import type { QuestionnaireItemAnswerOption } from 'fhir/r4'; interface RadioOptionListProps { options: QuestionnaireItemAnswerOption[]; readOnly: boolean; fullWidth: boolean; answerOptionsToggleExpressionsMap: Map; } declare function RadioOptionList(props: RadioOptionListProps): import("react/jsx-runtime").JSX.Element; export default RadioOptionList;