export interface AgentsDoc { path: string; content: string; } /** * Discover AGENTS.md files from the repo root down to `startDir` (closest wins). * Per directory, `AGENTS.override.md` beats `AGENTS.md`. Returns root-first order * so concatenation lets deeper files override earlier guidance. */ export declare function discoverAgentsFiles(repoRoot: string, startDir?: string): AgentsDoc[]; export declare function loadAgentsInstructions(repoRoot: string, startDir?: string): { text: string; sources: string[]; }; //# sourceMappingURL=agents.d.ts.map