declare function unicodeEmoji(emoji: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; declare function rgb(color: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; declare function hsl(color: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; declare function hex(color: string): { include: boolean; matchs: RegExpMatchArray | null; groups: any[] | null; }; export { unicodeEmoji, rgb, hsl, hex }; //# sourceMappingURL=global.d.ts.map