import Command from "./command"; export default class GroupCommand { private groupName; private commands; constructor(name: string, commandsList: Command[]); getGroupName(): string; setGroupName(name: string): void; getCommands(): { command: Command; highlightArr: boolean[]; }[]; setCommands(commandsList: Command[]): void; setCommandsHighlighted(commandsList: { command: Command; highlightArr: boolean[]; }[]): void; }