declare const fieldMap: { hash: string; treeHash: string; abbrevParentHashes: string; authorName: string; authorEmail: string; authorDate: string; committerName: string; committerEmail: string; committerDate: string; subject: string; }; export type GitLogOptions = { number: number; branch: string; fields: ReadonlyArray>; }; export type GitLogCommit = { hash: string; treeHash: string; abbrevParentHashes: string; authorName: string; authorEmail: string; authorDate: string; committerName: string; committerEmail: string; committerDate: string; subject: string; }; export declare const logGitCommits: (options: GitLogOptions) => GitLogCommit[]; export {};