/** * Zod schema for EVM execution event handlers * These are not part of the JSON-RPC interface but are used internally for call handling */ export const zCallEvents: z.ZodObject<{ onStep: z.ZodOptional>>; onNewContract: z.ZodOptional>>; onBeforeMessage: z.ZodOptional>>; onAfterMessage: z.ZodOptional>>; }, z.core.$strip>; import { z } from 'zod'; //# sourceMappingURL=zCallEvents.d.ts.map