import { Command, flags } from '@oclif/command'; export default class Stop extends Command { static description: string; static examples: string[]; static flags: flags.Input; static strict: boolean; static args: { description: string; name: string; required: boolean; }[]; run(): Promise; }