/** * Bump the semver range for a dependency to match the new version of a package. * * @returns * - If a bump is needed, string of the new dependency range * - `true` for implicit bumps: if `currentRange` is any `catalog:` version or `workspace:[*~^]`), * the range in package.json doesn't change now, but will be updated right before publishing * - `undefined` if `newVersion` satisfies `currentRange` */ export declare function bumpMinSemverRange(params: { /** The new version of the package */ newVersion: string; /** Current semver range specified for the dependency */ currentRange: string; }): string | true | undefined; //# sourceMappingURL=bumpMinSemverRange.d.ts.map