import { type Argv } from 'yargs'; export declare const command = "run [args..]"; export declare const describe = "Run a yarn command. The assistant will resolve the command using alias and string reduction."; export declare const aliases: string[]; interface ICommandData { alias: string[]; aliasFormated: string; command: string; example: string; } interface IRunOptions { args: string[]; command: string; } /** * Display the help text for the command * @param data */ export declare const displayHelp: (data: ICommandData[]) => void; /** * Help text for run command */ export declare const getAlias: () => { all: string[]; data: ICommandData[]; }; /** * Execute the health command * @param argv */ export declare const handler: (argv: IRunOptions) => void; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv; export {};