import type { LTApiResult, LTApiAuth } from '../types/sdk'; export declare function listAgents(input: { status?: string; knowledge_domain?: string; limit?: number; offset?: number; }): Promise; export declare function getAgent(input: { id: string; }): Promise; export declare function createAgent(input: { id: string; [key: string]: any; }, _auth?: LTApiAuth): Promise; export declare function updateAgent(input: { id: string; [key: string]: any; }): Promise; export declare function deleteAgent(input: { id: string; }): Promise;