export interface EmojiInterface { name?: string; id?: string; raw: string; animated?: boolean | null; unicode: boolean; } export declare class Emoji implements EmojiInterface { name?: string; id?: string; raw: string; animated?: boolean | null; unicode: boolean; constructor(data: EmojiInterface); }