import { IContext, IResponse } from '../../types';
import { IGenAiAnthropicKey } from '..';
export interface IGetAnthropicKeyApiResponse {
    anthropic_key: IGenAiAnthropicKey;
}
export interface IGetAnthropicKeyApiRequest {
    key_uuid: string;
}
export type GetAnthropicKeyResponse = IResponse<IGetAnthropicKeyApiResponse>;
export declare const getAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid }: IGetAnthropicKeyApiRequest) => Promise<Readonly<GetAnthropicKeyResponse>>;
