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