export type CommitAuthor = { name?: string; email?: string; }; export type ReplaceCommitAuthorParams = { prev?: CommitAuthor; next?: CommitAuthor; }; export declare function replaceCommitAuthor({ prev: { name: prevName, email: prevEmail }, next: { name: nextName, email: nextEmail }, }: ReplaceCommitAuthorParams): Promise;