export type BumpType = 'patch' | 'minor' | 'major';
export declare function bumpVersion(type?: BumpType): Promise<string>;
