import { Commit } from '../../../sourceCommit/parseSourceCommit';
export declare function fetchPullRequestsBySearchQuery(options: {
    accessToken: string;
    author: string | null;
    dateSince: string | null;
    dateUntil: string | null;
    githubApiBaseUrlV4?: string;
    maxNumber?: number;
    onlyMissing?: boolean;
    prFilter: string;
    repoName: string;
    repoOwner: string;
    sourceBranch: string;
}): Promise<Commit[]>;
