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