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