/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: BSD-3-Clause */ /** * Replaces characters which have special meaning in HTML (&<>"') with escaped * HTML entities ("&", "<", etc.). */ export declare const escapeHtml: (str: string) => string; //# sourceMappingURL=escape-html.d.ts.map