import { GitTagsByPackageName, Package, UpdatedPackage } from '../types'; export declare const utils: { log(...args: any[]): void; getTopologicallySortedPackages(rootDir: string): Package[]; getPackages(rootDir: string): Package[]; getUpdatedPackagesAsync(shouldIncludePrivate: boolean): Promise; getLernaUpdatedPackagesAsync(shouldIncludePrivate: boolean): Promise; getNextPackageVersionAsync(currentVersion: string, packageName: string, packageLocation: string): Promise; getRemoteGitTagsAsync(): Promise; getLocalGitTagsAsync(): Promise; getGitTagsByPackageNameAsync(packageNames: string[], gitTags: string[]): Promise; removeLocalTagAsync(tagName: string): Promise; removeRemoteTagAsync(tagName: string): Promise; };