export declare function getGitRoot(catalogPath: string): string;
export declare function getChangedFiles(catalogPath: string, commitRange: string): string[];
export declare class GitError extends Error {
    title: string;
    suggestions: string[];
    constructor(title: string, message: string, suggestions?: string[]);
}
export declare function getFileAtCommit(catalogPath: string, filePath: string, commit: string): string;
//# sourceMappingURL=git.d.ts.map