import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes an available event type that can be subscribed to. */ export type EventType = { /** * Unique identifier for the event type. */ eventTypeID: string; /** * The type identifier string. */ type: string; /** * A human-readable description of the event type. */ description: string; }; /** @internal */ export declare const EventType$inboundSchema: z.ZodType; /** @internal */ export type EventType$Outbound = { eventTypeID: string; type: string; description: string; }; /** @internal */ export declare const EventType$outboundSchema: z.ZodType; export declare function eventTypeToJSON(eventType: EventType): string; export declare function eventTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=eventtype.d.ts.map