import { IContext, IResponse } from '../../types'; import { IGenAiAnthropicKey, IGenAiExternalApiKeyCreateRequest } from '..'; export interface ICreateAnthropicKeyApiResponse { anthropic_key: IGenAiAnthropicKey; } export type CreateAnthropicKeyResponse = IResponse; export declare const createAnthropicKey: ({ httpClient }: IContext) => (data: IGenAiExternalApiKeyCreateRequest) => Promise>;