import { SchemaIR, ZodDelegateIR } from "../../types.js"; import { FastGen, SlowGen } from "../context.js"; //#region src/core/codegen/schemas/zod-delegate.d.ts /** The retained schema is irrelevant on success; compile the equivalent inner. */ declare function fastZodDelegate(ir: ZodDelegateIR, g: FastGen): string | null; /** Let the pristine Zod schema produce byte-exact issues on the cold path. */ declare function slowCompiledZodDelegate(ir: SchemaIR & { type: "zodDelegate"; }, g: SlowGen): string; //#endregion export { fastZodDelegate, slowCompiledZodDelegate }; //# sourceMappingURL=zod-delegate.d.ts.map