import { WorkflowEvent, WorkflowEventConfig } from "@llamaindex/workflow-core"; import * as z4 from "zod/v4/core"; import * as z3 from "zod/v3"; //#region src/util/zod.d.ts type ZodSchema = z3.ZodType | z4.$ZodType; declare const zodEvent: (schema: ZodSchema, config?: WorkflowEventConfig) => WorkflowEvent & { readonly schema: ZodSchema; }; //#endregion export { zodEvent }; //# sourceMappingURL=zod.d.ts.map