import { Command, Action } from "."; import { Commands } from "./definitions"; /** Registers the aliases of a command into a dictionary of commands */ export declare function registerCommandAliases({ name, command, commands }: { /** Name of the command */ name: string; command: Command | Action; commands: Commands; }): void;