export declare function getGitTag(filename: string): Promise; export declare function getModifiedTime(filename: string): Promise; export interface GitLog { commit: string; author: string; date: string; body: string; } export declare function getLogs(files?: null | Array, range?: null | { tag0: string; tag1: string; }, limit?: null | number): Promise>; export declare function getDiff(filename: string, tag0: string, tag1: string): Promise; //# sourceMappingURL=git.d.ts.map