import { IContext, IListResponse, IResponse } from '../../types';
import { IGenAiAnthropicKey } from '..';
export interface IListAnthropicKeysApiResponse extends IListResponse {
    anthropic_keys: IGenAiAnthropicKey[];
}
export type ListAnthropicKeysResponse = IResponse<IListAnthropicKeysApiResponse>;
export declare const listAnthropicKeys: ({ httpClient }: IContext) => ({ page, per_page }?: {
    page?: number;
    per_page?: number;
}) => Promise<Readonly<ListAnthropicKeysResponse>>;
