import { CustomIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/custom.d.ts /** Total hot-path predicate for z.custom() and z.instanceof(). */ declare function fastCustom(ir: CustomIR, g: FastGen): string; /** Let Zod construct the exact custom/instanceof issue only after rejection. */ declare function slowCustom(ir: CustomIR, g: SlowGen): string; //#endregion export { fastCustom, slowCustom }; //# sourceMappingURL=custom.d.ts.map