import { CommandBase, CommandParser } from '@autobot/common'; /** * Delete a HelpDesk Tag. * Note: The tag must not be in use by questions! * * Example: !tagdelete name= * */ export declare class TagDeleteCommand extends CommandBase { constructor(); run(command: CommandParser): Promise; }