export interface EmojiEntity { type: string; text: string; url: string; indices: number[]; } export declare const TypeName = "emoji"; export declare function parse(text: string): EmojiEntity[]; export declare function toCodePoints(unicodeSurrogates: string): string[];