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