export type RolloverOpts = {
    changelogFile: string;
    gitTag: string;
    nextVersion: string;
};
export declare function parseArgs(args: Array<string>): RolloverOpts;
export declare function nextVersionRolloverFromCliArgs(args: Array<string>): Promise<void>;
export declare function nextVersionRollover(opts: RolloverOpts): Promise<void>;
export declare function getCurrentDate(): string;
