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