import type { BranchUpgradeConfig } from '../../../../types';
import type { ChangeLogSource } from './source';
import type { ChangeLogResult } from './types';
export * from './types';
export declare function getChangeLogJSON(config: BranchUpgradeConfig): Promise<ChangeLogResult | null>;
export declare function getChangeLogSourceFor(platform: string): ChangeLogSource | null;
