import { BaseSectionDefinition } from './BaseSectionDefinition.js'; import { SectionType } from './SectionTypeEnum.js'; /** * Represents a generator switch section in a decision table. * * This section is used to control the execution of generators via switches. * It stores the generator names, corresponding switch values, and optional comments. */ export declare class GeneratorSwitchSectionDefinition extends BaseSectionDefinition { /** * The section type, set to GENERATOR_SWITCH_SECTION. */ sectionType: SectionType; /** * Maps row IDs to generator names. */ generatorNames: Record; /** * Maps row IDs to switch values (expressions). */ values: Record; /** * Maps row IDs to comment entries. */ comments: Record; /** * Getter for the data row IDs of this section. * @returns An array containing the row IDs. */ get dataRows(): string[]; /** * Setter for the data row IDs of this section. * @param value - An array of row IDs. */ set dataRows(value: string[]); /** * Validates this generator switch section definition. * * Checks that each row in the section has an associated generator name. * If a row lacks a generator name, an error issue is added. * * @returns An array of validation issues found. */ validate(): import("../index.js").SectionErrorInterface[]; } //# sourceMappingURL=GeneratorSwitchSectionDefinition.d.ts.map