import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, IProject, ProjectIntegration } from '../definitions'; import { Command } from '../lib/command'; export declare class RepairCommand extends Command { getMetadata(): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise; npmRepair(project: IProject): Promise; cordovaRepair(cordova: Required, runinfo: CommandInstanceInfo): Promise; }