import { HTML } from "./model"; /** * Removes characters from the string that could potentially be used for HTML injection. * @param source * @returns {string} */ export declare function sanitize(source: HTML): HTML; /** * Replaces the sanitized characters with the corresponding character not sanitized. * @param source * @returns {string} */ export declare function desanitize(source: HTML): HTML;