import * as z from "zod/v4"; import * as models from "../index.js"; export type UpdateAPIKeyGlobals = { /** * 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 UpdateAPIKeyRequest = { /** * Unique identifier for the api key. */ id: string; updateAPIKeyRequest?: models.UpdateAPIKeyRequest | undefined; }; /** @internal */ export type UpdateAPIKeyRequest$Outbound = { id: string; UpdateAPIKeyRequest?: models.UpdateAPIKeyRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateAPIKeyRequest$outboundSchema: z.ZodType; export declare function updateAPIKeyRequestToJSON(updateAPIKeyRequest: UpdateAPIKeyRequest): string; //# sourceMappingURL=updateapikey.d.ts.map