export declare type Command = { id: string; description: string; }; export declare function getCommands(): Command[]; export declare function executeCommand(name: string): void;