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