import { Argv } from "yargs";
import { NewlineSymbol } from "../lib/types";
export type ParseChangelogArgs = {
    file: string;
    newLine: NewlineSymbol;
    consolidate: boolean;
    filter: string;
    semver: string;
    error: boolean;
    parserType: "builtin" | "marked";
    format: "json" | "markdown";
    stripMarkdown: boolean;
};
export declare const command: string[];
export declare const describe = "parse command";
export declare const builder: (cmd: Argv) => void;
export declare const handler: (argv: ParseChangelogArgs) => void;
