import { RichEmbed } from "discord.js"; export declare class EmedUtil { /** * Helper for a creating a simple embedded message * * @param title Top of the message * @param color The corresponding Discord color value * @param description Body of the message * */ static getEmbedBasic(title: string, color: number, description: string): RichEmbed; }