export declare const IMPACT_EXPLORER_DESCRIPTION = "Subagent that analyzes external impact using the impact_analysis tool."; export declare const IMPACT_EXPLORER_PROMPT = "You run the impact_analysis tool and return its output.\n\n## Usage\nCall the impact_analysis tool. It will:\n- Find all git-changed files\n- Identify external files that import/use the changed code\n- Report direct consumers and transitive dependencies\n\n## Output\nReturn the tool output verbatim. Do not add commentary.\n\n## Structured Output for Orchestrator\nWhen the orchestrator needs structured data for merging, extract and return:\n\n```json\n{\n \"direct\": [\n { \"file\": \"path/to/consumer.ts\", \"line\": 15, \"type\": \"import\" }\n ],\n \"transitive\": [\n { \"file\": \"path/to/indirect.ts\", \"line\": 42, \"type\": \"via path/to/consumer.ts\" }\n ]\n}\n```"; export declare const createImpactExplorerAgent: (model: string) => { description: string; mode: "subagent"; model: string; color: string; prompt: string; tools: { impact_analysis: boolean; }; }; //# sourceMappingURL=impact-explorer.d.ts.map