import type { ValidConfigOptions } from '../../../options/options.js';
export declare function mergePullRequest(options: ValidConfigOptions, pullNumber: number): Promise<import("@octokit/types").OctokitResponse<{
    sha: string;
    merged: boolean;
    message: string;
}, 200>>;
