import { VersionUpgrade } from './getVersionUpgrade';
import { CollectibleInfo } from './types';
/**
 * Returns the minimum version bump for the given list
 * @param baseList the base list of collectibles
 * @param updatedList the updated list of collectibles
 */
export declare function minVersionBump(baseList: CollectibleInfo[], updatedList: CollectibleInfo[]): VersionUpgrade;
