import { IResponse, IListRequest, IListResponse, IContext } from '../../types'; import { IGenAiAgent } from '..'; export interface IListAgentsApiResponse extends IListResponse { agents: IGenAiAgent[]; } export type ListAgentsResponse = IResponse; export interface IListAgentsApiRequest extends IListRequest { only_deployed?: boolean; } export declare const listAgents: ({ httpClient }: IContext) => ({ page, per_page, only_deployed }?: IListAgentsApiRequest) => Promise>;