import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteAPIKeysGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; /** * API keys deleted successfully. */ export type DeleteAPIKeysResponse = { deletedCount: number; }; /** @internal */ export declare const DeleteAPIKeysResponse$inboundSchema: z.ZodType; export declare function deleteAPIKeysResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deleteapikeys.d.ts.map