/**
* Escapes HTML special characters in a string to prevent XSS when displaying user-provided or dynamic content in HTML.
* @param text - The text to escape.
* @returns The escaped text safe for HTML display.
*/
export declare function escapeHtml(text: string): string;