import Command, { flags } from './../base'; import { Config, OpCommand } from './../types'; import { BuildOptions } from '../types/Docker'; export default class Build extends Command { static description: string; static flags: flags.Input; static args: { name: string; description: string; }[]; resolvePath: (opPath: string) => string; selectOpToBuild: (ops: OpCommand[]) => Promise; executeOpService: (commands: OpCommand[], opPath: string, config: Config, options: BuildOptions) => Promise; run(this: any): Promise; }