declare const fullEmojiRegexp: RegExp;
declare const simpleEmojiRegexp: RegExp;
declare function extractEmoji(text: string): Array<string>;
declare function extractCommonEmoji(text: string): Array<string>;
export { extractEmoji, extractCommonEmoji, fullEmojiRegexp, simpleEmojiRegexp };