import * as z from "zod/v4"; export type GetManagerGlobals = { /** * 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 GetManagerRequest = { /** * Unique identifier for a manager. */ id: string; }; /** @internal */ export type GetManagerRequest$Outbound = { id: string; }; /** @internal */ export declare const GetManagerRequest$outboundSchema: z.ZodType; export declare function getManagerRequestToJSON(getManagerRequest: GetManagerRequest): string; //# sourceMappingURL=getmanager.d.ts.map