import { CommandBase, CommandParser } from '@autobot/common'; /** * Adds or updates an alias `;;alias javascript js`. */ export declare class AliasAddCommand extends CommandBase { constructor(); /** * Called when a command matches config.name. * * @param command Parsed out commamd * */ run(command: CommandParser): Promise; }