import type { ValidConfigOptions } from '../../options/options.js';
export declare function pushBackportBranch({ options, backportBranch, }: {
    options: ValidConfigOptions;
    backportBranch: string;
}): Promise<{
    cmdArgs: ReadonlyArray<string>;
    code: number | null;
    stderr: string;
    stdout: string;
}>;
