import { Agent, ExecuteResponse, Message, ListAgentsResponse, ListAgentsParams } from "./types";
export declare const executeAgent: (agentId: number, messages: Message[], temperature?: string, model?: string, tools?: string, fileIds?: number[], rootId?: number | null, memoryCollections?: number[]) => Promise<ExecuteResponse>;
export declare const listAgents: (params?: ListAgentsParams) => Promise<ListAgentsResponse>;
export declare const getAgent: (agentId: number) => Promise<Agent>;
//# sourceMappingURL=agents.d.ts.map