import { App } from './../../app/index';
export declare abstract class CommandBase {
    app: App;
    abstract run(options: any): Promise<any>;
}
