import { IContext, IListResponse, IResponse } from '../../types'; import { IGenAiAgent } from '..'; export interface IListAgentsByAnthropicKeyApiResponse extends IListResponse { agents: IGenAiAgent[]; } export interface IListAgentsByAnthropicKeyApiRequest { key_uuid: string; page?: number; per_page?: number; } export type ListAgentsByAnthropicKeyResponse = IResponse; export declare const listAgentsByAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid, page, per_page }: IListAgentsByAnthropicKeyApiRequest) => Promise>;