/** * Text utility functions for cleaning and processing text content */ /** * Remove emojis and other Unicode symbols from text * This regex matches emoji ranges and other Unicode symbols */ export declare function removeEmojis(text: string | null | undefined): string | undefined; /** * Clean and truncate text content for event tracking * Removes emojis, trims whitespace, and limits length */ export declare function cleanElementText(text: string | null | undefined, maxLength?: number): string | undefined; //# sourceMappingURL=text-utils.d.ts.map