import type { IndemnClient } from './client.js'; import type { Agent, CreateAgentInput, UpdateAgentInput } from './types.js'; export declare class AgentsSDK { private client; constructor(client: IndemnClient); listAgents(): Promise; getAgent(id: string): Promise; createAgent(input: CreateAgentInput): Promise; updateAgent(id: string, input: UpdateAgentInput): Promise; deleteAgent(id: string): Promise; cloneAgent(id: string): Promise; } //# sourceMappingURL=agents.d.ts.map