/** * Removes emojis from a string and fix whitespaces * * Note: [🔂] This function is idempotent. * * @param text with emojis * @returns text without emojis * * @public exported from `@promptbook/utils` */ export declare function removeEmojis(text: string): string;