/**
* Clean a string by replacing HTML entities with their respective characters.
*
* @paramstr - The string to clean.
* @returns The cleaned string with all HTML entities replaced with their respective characters.
*/exportdeclareconstdecodeHtmlEntities: (str?: string) =>string;