import { z } from 'zod'; export type ContractEvent> = z.output; export type EventSchema = z.ZodType; export type Registry = Record>; export type Entry = { schema: R; optional?: boolean; };