import * as z from "zod/v4"; export type GetAPIKeyGlobals = { /** * 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 GetAPIKeyRequest = { /** * Unique identifier for the api key. */ id: string; }; /** @internal */ export type GetAPIKeyRequest$Outbound = { id: string; }; /** @internal */ export declare const GetAPIKeyRequest$outboundSchema: z.ZodType; export declare function getAPIKeyRequestToJSON(getAPIKeyRequest: GetAPIKeyRequest): string; //# sourceMappingURL=getapikey.d.ts.map