import { type Argv } from 'yargs'; export declare const command = "bump-version"; export declare const describe = "Update the version of the project."; export declare const aliases: string[]; interface IBumpVersionOptions { changelog: boolean; dependencies: boolean; } /** * Run the bump version command * @param argv */ export declare const handler: (argv: IBumpVersionOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ changelog: { alias: string; describe: string; type: "boolean"; default: boolean; }; dependencies: { alias: string; describe: string; type: "boolean"; default: boolean; }; }>>; export {};