import type { IGitCommitInfo } from "./IGitCommitInfo.js";
interface IGitGetCommitsOptions {
    from?: string | null;
    to?: string;
    path?: string;
    maxCommits?: number;
    includeTags?: boolean;
    includeTrailers?: boolean;
    customTrailers?: RegExp[];
    customLinks?: RegExp[];
}
export declare function getGitCommits({ from, to, path, maxCommits, includeTags, includeTrailers, customTrailers, customLinks, }?: IGitGetCommitsOptions): AsyncGenerator<IGitCommitInfo>;
export {};
//# sourceMappingURL=getGitCommits.d.ts.map