import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata } from '../../definitions'; import { DeployConfCommand } from './core'; export declare class AddCommand extends DeployConfCommand { getMetadata(): Promise; protected buildCordovaDeployOptions(options: CommandLineOptions): string[]; preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise; addPlugin(options: CommandLineOptions, runinfo: CommandInstanceInfo, integration?: string): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise; }