import { type Argv } from 'yargs'; import { type IInstallOptions } from './functions'; export declare const command = "add "; export declare const describe = "Install a new dependencies."; export declare const aliases: string[]; /** * Execute the health command * @param argv */ export declare const handler: (argv: IInstallOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv;