import { BackportResponse } from '../../../backportRun';
import { ValidConfigOptions } from '../../../options/options';
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;
