import { type Argv } from 'yargs'; import type { IParamCheckDependenciesOptions } from './types'; export declare const command = "check-dependencies"; export declare const describe = "Will check dependencies for outdated or security issues."; export declare const aliases: string[]; /** * Execute the check command * @param argv */ export declare const handler: (argv: IParamCheckDependenciesOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ pr: { describe: string; type: "boolean"; default: boolean; }; git: { describe: string; type: "boolean"; default: boolean; }; interactive: { alias: string; describe: string; type: "boolean"; default: boolean; }; securityOnly: { alias: string; describe: string; type: "boolean"; default: boolean; }; }>>;