import { z } from "zod"; export declare const Incremented: z.ZodObject<{ amount: z.ZodNumber; }, z.core.$strip>; export declare const Decremented: z.ZodObject<{ amount: z.ZodNumber; }, z.core.$strip>; export declare const Reset: z.ZodObject<{}, z.core.$strip>; export declare const CounterSchemas: { readonly Incremented: z.ZodObject<{ amount: z.ZodNumber; }, z.core.$strip>; readonly Decremented: z.ZodObject<{ amount: z.ZodNumber; }, z.core.$strip>; readonly Reset: z.ZodObject<{}, z.core.$strip>; }; export type CounterEvents = { Incremented: z.infer; Decremented: z.infer; Reset: z.infer; }; export declare const COUNTER_EVENT_NAMES: readonly ["Incremented", "Decremented", "Reset"]; //# sourceMappingURL=events.d.ts.map