import { Change, VersionChangelog } from '../types'; export declare const changelogUtils: { getChangelogMdTitle(versionChangelog: VersionChangelog): string; getChangelogMdChange(change: Change): string; generateChangelogMd(changelog: VersionChangelog[]): string; shouldAddNewChangelogEntry(packageName: string, currentVersion: string, changelog: VersionChangelog[]): boolean; getChangelogJSONIfExists(changelogPath: string): string | undefined; getChangelogOrCreateIfMissing(packageName: string, packageLocation: string): VersionChangelog[]; writeChangelogJsonFileAsync(packageLocation: string, changelog: VersionChangelog[]): Promise; writeChangelogMdFileAsync(packageLocation: string, changelogMdString: string): Promise; prettifyAsync(filePath: string, cwd: string): Promise; };