import { CommandBase, CommandParser } from '@autobot/common'; import { RichEmbed } from 'discord.js'; /** * Outputs the searchable terms for a language. */ export declare class TermsCommand extends CommandBase { static getMessageEmbed(term: string, results: string): RichEmbed; constructor(); /** * Called when a command matches config.name. * * @param command Parsed out commamd * */ run(command: CommandParser): Promise; }