export type VersionIncrement = 'patch' | 'minor' | 'major' | (string & {}); export type VersionStage = 'alpha' | 'beta' | 'rc' | (string & {}); export interface GetNextVersionOptions { type: VersionIncrement; stage?: VersionStage; } export declare function getNextVersion(version: string, options?: GetNextVersionOptions): string;