import { SchemaIR, SetIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/set.d.ts declare function slowSet(ir: SchemaIR & { type: "set"; }, g: SlowGen): string; declare function fastSet(ir: SetIR, g: FastGen): string | null; //#endregion export { fastSet, slowSet }; //# sourceMappingURL=set.d.ts.map