export interface RepoInfo { name: string; path: string; hasIndex: boolean; isStale: boolean; } /** * Scan a directory for git repositories (1 level deep). * Returns info about each discovered repo. */ export declare function discoverRepos(parentDir: string, onError?: (msg: string) => void): RepoInfo[];