import { IContext, IResponse } from '../../types'; export interface IDeleteAnthropicKeyApiRequest { key_uuid: string; } export type DeleteAnthropicKeyResponse = IResponse; export declare const deleteAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid }: IDeleteAnthropicKeyApiRequest) => Promise>;