import { Commit } from '../../../../entrypoint.api';
export declare function fetchCommitsForRebaseAndMergeStrategy(options: {
    accessToken: string;
    githubApiBaseUrlV4?: string;
    pullNumber: number;
    repoName: string;
    repoOwner: string;
    sourceBranch: string;
}, commitsTotalCount: number): Promise<Commit[] | undefined>;
