import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions'; import { CapacitorCommand } from './base'; export declare class UpdateCommand extends CapacitorCommand implements CommandPreRun { getMetadata(): Promise; preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; }