import { ValidConfigOptions } from '../../../../options/options';
import { Commit } from '../../../sourceCommit/parseSourceCommit';
export declare function fetchCommitBySha(options: {
    accessToken: string;
    branchLabelMapping?: ValidConfigOptions['branchLabelMapping'];
    githubApiBaseUrlV4?: string;
    repoName: string;
    repoOwner: string;
    sha: string;
    sourceBranch: string;
}): Promise<Commit>;
