import { type Argv } from 'yargs'; import { type ParamCheckOptions } from './functions'; export declare const command = "check-version"; export declare const describe = "Will check version compliance on the workspace."; export declare const aliases: string[]; /** * Execute the check command * @param argv */ export declare const handler: (argv: ParamCheckOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ fix: { alias: string; describe: string; type: "boolean"; }; list: { alias: string; describe: string; type: "boolean"; }; }>>;