/**
 * Agent Orchestrator Tool
 *
 * High-level MCP tool for Agent-to-Agent (A2A) orchestration.
 * Enables declarative workflow execution using registered tools.
 *
 * Features:
 * - Execute pre-defined workflow templates
 * - Custom workflow execution from user-provided plans
 * - Automatic context management and tracing
 * - Error handling with fallback strategies
 * - Execution visualization and reporting
 */
/**
 * Workflow template identifier
 */
export type WorkflowTemplate = "quality-audit" | "security-scan" | "code-analysis-pipeline" | "documentation-generation";
/**
 * Agent Orchestrator Tool
 *
 * Orchestrates multi-tool workflows with A2A chaining capabilities.
 *
 * @param args - Orchestrator configuration
 * @returns Workflow execution result with trace and summary
 */
export declare function agentOrchestrator(args: unknown): Promise<{
    content: {
        type: string;
        text: string;
    }[];
    isError?: undefined;
} | {
    content: {
        type: string;
        text: string;
    }[];
    isError: boolean;
}>;
//# sourceMappingURL=agent-orchestrator.d.ts.map