/** Result of path auto-detection. */ export interface DetectedPaths { skillsDir?: string; evalsDir?: string; resultsDir?: string; } /** * Walk the project tree under `root` and infer standard paths: * * - `SKILL.md` → skills root (grandparent if parent name contains "skill") * - `eval.yaml` / `eval.yml` → evals root dir * - `*results*.json` → results dir * * Skips hidden directories, `node_modules`, and `vendor`. */ export declare function detectPaths(root: string): Promise; //# sourceMappingURL=detect-paths.d.ts.map