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