import type { QuestionnaireItemAnswerOption } from 'fhir/r4'; import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; interface QuantityUnitFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; options: QuestionnaireItemAnswerOption[]; valueSelect: QuestionnaireItemAnswerOption | null; readOnly: boolean; calcExpUpdated: boolean; instructionsId: string | undefined; onChange: (newValue: QuestionnaireItemAnswerOption | null) => void; } declare function QuantityUnitField(props: QuantityUnitFieldProps): import("react/jsx-runtime").JSX.Element; export default QuantityUnitField;