/** * get current version with git describe * @returns {Promise} The tag version */ export declare function getTagVersion(): Promise; /** * get previous version with git describe * @returns {Promise} The previous tag version */ export declare function getPreviousTagVersion(): Promise; /** * create a branch name based on current tag * @returns {Promise} The branch name to be created */ export declare function getTagBranchName(): Promise;