import type { ValidConfigOptions } from '../../../options/options.js';
import type { BackportResponse } from '../../run-sequentially.js';
export declare function createStatusComment({ options, backportResponse, }: {
    options: ValidConfigOptions;
    backportResponse: BackportResponse;
}): Promise<void>;
export declare function getCommentBody({ options, pullNumber, backportResponse, }: {
    options: ValidConfigOptions;
    pullNumber: number;
    backportResponse: BackportResponse;
}): string | undefined;
