import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { SystemEvent } from "./systemevent.js"; import { UserEvent } from "./userevent.js"; export type Event = UserEvent | SystemEvent; /** @internal */ export declare const Event$inboundSchema: z.ZodMiniType; export declare function eventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=event.d.ts.map