interface Commit { hash: string; author: string; date: string; } export declare const logFirstCommit: () => string; declare const firstCommit: () => Commit | null; export default firstCommit; //# sourceMappingURL=first-commit.d.ts.map