/** * get release verison from proposal * @param {String} proposal Release {semver} * */ export declare const getReleaseVersion: (proposal: string) => string | null; /** * get release label * @param {String} curr * @param {String} next */ export declare const getReleaseLabel: (curr: string, next: string) => string | undefined; /** * Satisfies Version * @param {String} curr * @param {String} next */ export declare const satisfiesVersion: (curr: string, next: string) => boolean | undefined; //# sourceMappingURL=index.d.ts.map