export default class Command { commandName: string; commandKey: string; commandAction: Function; constructor(name: string, key: string, action: Function); getCommandName(): string; setCommandName(name: string): void; getCommandKey(): string; setCommandKey(key: string): void; getCommandAction(): Function; setCommandAction(action: Function): void; }