import Command, { flags } from './../base'; import { Config } from './../types'; export default class Stop extends Command { static description: string; static flags: flags.Input; static args: { name: string; description: string; }[]; stopOp: (runId: string, config: Config) => Promise; run(): Promise; }