import { GluegunToolbox } from '../domain/toolbox'; import { Runtime } from './runtime'; import { Options } from '../domain/options'; /** * Runs a command. * * @param rawCommand Command string or array of strings. * @param extraOptions Additional options use to execute a command. * @return The Toolbox object indicating what happened. */ export declare function run(this: Runtime, rawCommand?: string | string[], extraOptions?: Options): Promise;