import type { Command, CmdName } from "./types";
declare const commands: {
    [Name in CmdName]: Command;
};
export default commands;
