/** * @fileoverview Event Schema (SPEC Section 7.2) * * Event specifies the core action/operation of the intent. */ import { z } from "zod"; /** * Event schema representing the core action. * * @example * { lemma: "CANCEL", class: "CONTROL" } * { lemma: "SOLVE", class: "SOLVE" } */ export declare const EventSchema: z.ZodObject<{ lemma: z.ZodString; class: z.ZodEnum<{ OBSERVE: "OBSERVE"; TRANSFORM: "TRANSFORM"; SOLVE: "SOLVE"; CREATE: "CREATE"; DECIDE: "DECIDE"; CONTROL: "CONTROL"; }>; }, z.core.$strict>; export type Event = z.infer; //# sourceMappingURL=event.d.ts.map