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