/** * Decodes any HTML entities in given string into their original strings. * * @param {string} string * @returns {string} */ export declare function decodeHtmlEntities(string: string): string;