export declare type CliOptions = {
    sinceMaster?: boolean;
    verbose?: boolean;
    output?: string;
    otp?: string;
    empty?: boolean;
    since?: string;
    ignore?: string | string[];
    snapshot?: string | boolean;
    snapshotPrereleaseTemplate?: string;
    tag?: string;
    gitTag?: boolean;
    open?: boolean;
};
export declare type CommandOptions = CliOptions & {
    cwd: string;
};
