import type { QuestionnaireItem, QuestionnaireItemAnswerOption, QuestionnaireResponseItemAnswer } from 'fhir/r4'; import type { PropsWithIsRepeatedAttribute, PropsWithIsTabledAttribute, PropsWithRenderingExtensionsAttribute } from '../../../interfaces/renderProps.interface'; interface ChoiceSelectAnswerOptionViewProps extends PropsWithIsRepeatedAttribute, PropsWithIsTabledAttribute, PropsWithRenderingExtensionsAttribute { qItem: QuestionnaireItem; options: QuestionnaireItemAnswerOption[]; qrAnswer: QuestionnaireResponseItemAnswer | null; feedback: string; feedbackSeverity?: 'error' | 'warning'; readOnly: boolean; expressionUpdated: boolean; answerOptionsToggleExpressionsMap: Map; instructionsId: string | undefined; onSelectChange: (newValue: QuestionnaireItemAnswerOption | null) => void; onFocusLinkId: () => void; } declare function ChoiceSelectAnswerOptionView(props: ChoiceSelectAnswerOptionViewProps): import("react/jsx-runtime").JSX.Element; export default ChoiceSelectAnswerOptionView;