export interface MergeHistoryOptions { beforeCommit: string; afterCommit: string; outputBranch: string; allowOverwrite: boolean; skipIgnoreRev: boolean; } export declare function mergeHistory(opts: MergeHistoryOptions): Promise;