/**
 * Escapes a string for insertion into HTML.
 */
declare function escapeHtml(str: any): any;
export default escapeHtml;
