import { BooleanIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/boolean.d.ts declare function slowBoolean(ir: BooleanIR, g: SlowGen): string; declare function fastBoolean(ir: BooleanIR, g: FastGen): string | null; //#endregion export { fastBoolean, slowBoolean }; //# sourceMappingURL=boolean.d.ts.map