import { SchemaIR } from "../types.js"; import { CodeGenContext, SlowGen } from "./context.js"; //#region src/core/codegen/slow-path.d.ts declare function createSlowGen(inputExpr: string, outputExpr: string, pathExpr: string, issuesVar: string, ctx: CodeGenContext, abortedVar?: string): SlowGen; declare function generateSlow(ir: SchemaIR, g: SlowGen): string; //#endregion export { createSlowGen, generateSlow }; //# sourceMappingURL=slow-path.d.ts.map