import type { CommandDef } from "./types";
export declare function registerCommand(def: CommandDef): void;
export declare function getCommand(name: string): CommandDef | undefined;
export declare function getAllCommands(): CommandDef[];
export declare function getCommandsByGroup(group: string): CommandDef[];