import { Argv } from "yargs";
import { ListItemChar, NewlineSymbol } from "../lib/types";
export type AddVersionArgs = {
    file: string;
    newLine: NewlineSymbol;
    listBullet: ListItemChar | string;
    title: string;
    added: string[];
    changed: string[];
    deprecated: string[];
    removed: string[];
    fixed: string[];
    output: string;
    newChangelog: string[];
};
export declare const command: string[];
export declare const describe = "add version command";
export declare const builder: (cmd: Argv) => void;
export declare const handler: (argv: AddVersionArgs) => void;
