export type TGetStrUnescapedArgs = Parameters; export type TGetStrUnescapedReturn = ReturnType; /** * Unescapes HTML entities back to their characters. * Unescaped: `& < > " '` * @param {string} str Source string * @returns {string} Unescaped string * @throws {TypeError} If str is not a string * @example * getStrUnescaped("<b>Hello & world</b>"); * // => "Hello & world" * @example * // Decode escaped text received from a trusted CMS field * const pageTitle = getStrUnescaped(cmsPage.escapedTitle); */ export declare const getStrUnescaped: (str: string) => string;