import * as lodash from 'lodash'; import { CapacitorRunHookName, CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions'; import { HookDeps } from '../../lib/hooks'; import { CapacitorCommand } from './base'; interface NativeTarget { id: string; name: string; api: string; } export declare class RunCommand extends CapacitorCommand implements CommandPreRun { getMetadata(): Promise; isOldCapacitor: (() => Promise) & lodash.MemoizedFunction; preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; protected getNativeTargets: ((platform: string) => Promise) & lodash.MemoizedFunction; protected runCapacitorOpenFlow(inputs: CommandLineInputs, options: CommandLineOptions): Promise; protected getContinueMessage(platform: string): string; protected runCapacitorRunFlow(inputs: CommandLineInputs, options: CommandLineOptions, { shouldSync }?: { shouldSync?: boolean; }): Promise; protected runCapacitorRunHook(name: CapacitorRunHookName, inputs: CommandLineInputs, options: CommandLineOptions, e: HookDeps): Promise; } export {};