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