import { CommandBase, CommandParser } from '@autobot/common'; /** * Creates a new HelpDesk Tag. * * Example: !addtag name=newtag,description=some new description * */ export declare class TagAddCommand extends CommandBase { constructor(); run(command: CommandParser): Promise; }