import type { MergeStrategy } from '../../../config/types';
import type { BranchStatus } from '../../../types';
import type { Pr } from '../types';
import type { BitbucketBranchState, MergeRequestBody, PrResponse } from './types';
export declare function mergeBodyTransformer(mergeStrategy: MergeStrategy | undefined): MergeRequestBody;
export declare const prStates: {
    open: string[];
    notOpen: string[];
    merged: string[];
    closed: string[];
    all: string[];
};
export declare const buildStates: Record<BranchStatus, BitbucketBranchState>;
export declare function prInfo(pr: PrResponse): Pr;
export declare const prFieldsFilter: string;
