import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetEventRequest = { /** * The ID of the event. */ eventId: string; }; /** @internal */ export declare const GetEventRequest$inboundSchema: z.ZodType; /** @internal */ export type GetEventRequest$Outbound = { event_id: string; }; /** @internal */ export declare const GetEventRequest$outboundSchema: z.ZodType; export declare function getEventRequestToJSON(getEventRequest: GetEventRequest): string; export declare function getEventRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getevent.d.ts.map