import { Arguments } from 'yargs'; import { Command } from './Command'; export default class Commands { private commands; constructor(commands?: Command[]); add(command: Command): Commands; get(argv: string[]): { command: Command | null; args: Arguments; }; }