/** * Escape special characters in an HTML string. * * @param html - The HTML string to escape. * @returns The escaped HTML string. * @example * const html = '
Hello & welcome!
'; * // returns '<div class="example">Hello & welcome!</div>' * const escaped = escapeHTML(html); */ export declare const escapeHTML: (html: string) => string;