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