import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions'; import { CordovaCommand } from './base'; export declare class RunCommand extends CordovaCommand implements CommandPreRun { getMetadata(): Promise; preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; protected runServeDeploy(inputs: CommandLineInputs, options: CommandLineOptions): Promise; protected runBuildDeploy(inputs: CommandLineInputs, options: CommandLineOptions): Promise; protected checkNativeRun(): Promise; protected runNativeRun(args: readonly string[]): Promise; }