import { TableDecision } from '../TableDecision.js'; import { ValidateRowModel } from './validateModelInterface.js'; /** * Constructs a validation row model from a given decision table. * * This function iterates over the section order of the provided table. For each section * that is a FIELD_SECTION, it iterates over its data rows (sub-sections), extracts the * corresponding row IDs, and creates a validation row model entry. Each entry contains * the list of row IDs for that sub-section and the ID of the parent section. * * @param table - The decision table model from which to build the row model. * @returns A validation row model mapping each sub-section row ID to its corresponding model row. */ export declare function buildRowModel(table: TableDecision): ValidateRowModel; //# sourceMappingURL=buildRowModel.d.ts.map