import type { PropsWithIsTabledAttribute } from '../../../interfaces/renderProps.interface'; interface QuantityFieldProps extends PropsWithIsTabledAttribute { linkId: string; itemType: string; itemText?: string; input: string; feedback: string; feedbackSeverity?: 'error' | 'warning'; displayPrompt: string; displayUnit: string; entryFormat: string; readOnly: boolean; calcExpUpdated: boolean; instructionsId: string | undefined; onInputChange: (value: string) => void; } declare function QuantityField(props: QuantityFieldProps): import("react/jsx-runtime").JSX.Element; export default QuantityField;