import type { ValidConfigOptions } from '../../../../options/options.js';
import type { Commit } from '../../../sourceCommit/parse-source-commit.js';
export declare function fetchCommitsByAuthor(options: {
    githubToken: string;
    author: string | null;
    branchLabelMapping?: ValidConfigOptions['branchLabelMapping'];
    commitPaths?: string[];
    since: string | null;
    until: string | null;
    githubApiBaseUrlV4?: string;
    maxCount?: number;
    onlyMissing?: boolean;
    repoName: string;
    repoOwner: string;
    sourceBranch: string;
}): Promise<Commit[]>;
