import * as z from "zod/v4"; export type GetEventGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetEventRequest = { /** * Unique identifier for the event. */ id: string; }; /** @internal */ export type GetEventRequest$Outbound = { id: string; }; /** @internal */ export declare const GetEventRequest$outboundSchema: z.ZodType; export declare function getEventRequestToJSON(getEventRequest: GetEventRequest): string; //# sourceMappingURL=getevent.d.ts.map