import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type ListManagerEventsGlobals = { /** * 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 ListManagerEventsRequest = { id: string; }; /** * Retrieved events. */ export type ListManagerEventsResponse = { items: Array; }; /** @internal */ export type ListManagerEventsRequest$Outbound = { id: string; }; /** @internal */ export declare const ListManagerEventsRequest$outboundSchema: z.ZodType; export declare function listManagerEventsRequestToJSON(listManagerEventsRequest: ListManagerEventsRequest): string; /** @internal */ export declare const ListManagerEventsResponse$inboundSchema: z.ZodType; export declare function listManagerEventsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listmanagerevents.d.ts.map