import { CommandBase, CommandParser } from '@autobot/common'; /** * Downloads the latest db.json file from devdocs.io with an !update . */ export declare class UpdateCommand extends CommandBase { constructor(); /** * Called when a command matches config.name. * * @param command Parsed out commamd * */ run(command: CommandParser): Promise; }