import { flags } from '@dxcli/command';
import Base from './command_base';
export default abstract class AppCommand extends Base {
    static flags: flags.Input;
    static args: {
        name: string;
        required: boolean;
    }[];
    abstract type: string;
    run(): Promise<void>;
}
