import { type ISubAgent, type ISubAgentInput, type ISubAgentResult, type SubAgentCapabilities } from '@mcp-abap-adt/llm-agent'; import type { SmartAgent } from '../agent.js'; export declare class SmartAgentSubAgent implements ISubAgent { readonly name: string; private readonly agent; readonly description?: string; readonly capabilities: SubAgentCapabilities; constructor(name: string, agent: SmartAgent, opts?: { description?: string; }); run(input: ISubAgentInput): Promise; } //# sourceMappingURL=smart-agent-subagent.d.ts.map