import { CommandModule, Arguments, Argv } from 'yargs';
import CommandProcessor from '@commands/processor/command.processor';
export default class CommandScaffold implements CommandModule {
    private readonly processor;
    command: string;
    describe: string;
    private schema;
    constructor(processor: CommandProcessor);
    builder(cli: Argv): Argv<{}>;
    handler(argv: Arguments): void;
}
