import { Pr } from '../common'; export declare function prInfo(pr: any): Pr; export declare function accumulateValues(reqUrl: string, method?: string, options?: any, limit?: number): Promise; export interface BitbucketCommitStatus { failed: number; inProgress: number; successful: number; } export declare type BitbucketBranchState = 'SUCCESSFUL' | 'FAILED' | 'INPROGRESS' | 'STOPPED'; export interface BitbucketStatus { key: string; state: BitbucketBranchState; }