import type { QuestionnaireItem, QuestionnaireResponseItem } from 'fhir/r4'; import type { PropsWithParentIsReadOnlyAttribute, PropsWithParentStylesAttribute, PropsWithQrItemChangeHandler } from '../../../interfaces/renderProps.interface'; interface GridRowProps extends PropsWithQrItemChangeHandler, PropsWithParentIsReadOnlyAttribute, PropsWithParentStylesAttribute { qItem: QuestionnaireItem; qrItem: QuestionnaireResponseItem | null; columnHeaderLabels: string[]; calculatedColumnWidths: { width: string; isFixed: boolean; }[]; } declare function GridRow(props: GridRowProps): import("react/jsx-runtime").JSX.Element | null; export default GridRow;