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