import type { PackageChangelog } from '../types/ChangeLog'; import type { PackageInfo } from '../types/PackageInfo'; /** * Merge multiple package changelogs into one. * `name` and `version` will use the values from `mainPackage`'s changelog. * `comments` are merged. `date` will be now. */ export declare function mergeChangelogs(changelogs: PackageChangelog[], mainPackage: PackageInfo): PackageChangelog | undefined; //# sourceMappingURL=mergeChangelogs.d.ts.map