import { FieldSubSectionDefinition } from '../../sections/FieldSubSectionDefinition.js'; import { TableDecision } from '../../TableDecision.js'; export interface DeserializeFieldSubSectionRequest { /** The raw JSON Object to be deserialized */ sectionDataRaw: any; /** The decision table */ table: TableDecision; /** The id of the parent section */ parentSectionId: string; } export declare function deserializeFieldSubSection(request: DeserializeFieldSubSectionRequest): FieldSubSectionDefinition; //# sourceMappingURL=deserializeFieldSubSection.d.ts.map