/** Sube el árbol desde un file_path hasta encontrar HANDOFF.md → directorio del proyecto */ export declare function findProjectCwdForFile(filePath: string): string | undefined; /** * Returns the git root directory for the given directory, or undefined. * Uses 'git rev-parse --show-toplevel' — fast and reliable. */ export declare function findGitRoot(fromDir: string): string | undefined;