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