import type { BranchUpgradeConfig } from '../../../../../types';
import { ChangeLogSource } from '../source';
export declare class BitbucketChangeLogSource extends ChangeLogSource {
    constructor();
    getAPIBaseUrl(_config: BranchUpgradeConfig): string;
    getCompareURL(baseUrl: string, repository: string, prevHead: string, nextHead: string): string;
}
