import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SecretResponse } from "./secret-response.js"; export type CreateAPIKeyResponse = { apiKey?: string | undefined; secret?: SecretResponse | undefined; }; /** @internal */ export declare const CreateAPIKeyResponse$inboundSchema: z.ZodMiniType; export declare function createAPIKeyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=create-api-key-response.d.ts.map