import * as z from "zod/v4"; import * as models from "../index.js"; export type GenerateManagerTokenGlobals = { /** * 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 GenerateManagerTokenRequest = { /** * Unique identifier for a manager. */ id: string; generateManagerTokenRequest?: models.GenerateManagerTokenRequest | undefined; }; /** @internal */ export type GenerateManagerTokenRequest$Outbound = { id: string; GenerateManagerTokenRequest?: models.GenerateManagerTokenRequest$Outbound | undefined; }; /** @internal */ export declare const GenerateManagerTokenRequest$outboundSchema: z.ZodType; export declare function generateManagerTokenRequestToJSON(generateManagerTokenRequest: GenerateManagerTokenRequest): string; //# sourceMappingURL=generatemanagertoken.d.ts.map