import { CommandBase, CommandParser } from '@autobot/common'; /** * Submits a question to the HelpDesk. * * Example: !ask how do I loop in javascript? #javascript #js * */ export declare class AskCommand extends CommandBase { constructor(); run(command: CommandParser): Promise; }