/** * Check if a path is a git repository. */ export declare function isGitRepo(path: string): Promise; /** * List tracked files in a repo, filtering out files matching exclude patterns. */ export declare function listTrackedFiles(repoPath: string, excludePatterns: string[]): Promise; //# sourceMappingURL=files.d.ts.map