import { IContext, IResponse } from '../../types'; import { IGenAiAnthropicKey, IGenAiExternalApiKeyUpdateRequest } from '..'; export interface IUpdateAnthropicKeyApiResponse { anthropic_key: IGenAiAnthropicKey; } export interface IUpdateAnthropicKeyApiRequest { key_uuid: string; updates: IGenAiExternalApiKeyUpdateRequest; } export type UpdateAnthropicKeyResponse = IResponse; export declare const updateAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid, updates }: IUpdateAnthropicKeyApiRequest) => Promise>;