/**
* Escape the characters "&", "<", ">", '"', and"'"in the given string to their corresponding HTML entities.
* @param {string} string the string to escape
* @returns {string} the escaped string
*/
export declare functionescape(string: string): string;