import type { RenovateConfig } from '../../../../../config/types';
import type { PrDebugData } from '../../../../../modules/platform';
import type { BranchConfig } from '../../../../types';
interface PrBodyConfig {
    appendExtra?: string | null | undefined;
    rebasingNotice?: string;
    debugData: PrDebugData;
}
export declare function getPrBody(branchConfig: BranchConfig, prBodyConfig: PrBodyConfig, config: RenovateConfig): string;
export {};
