/** * Decodes the HTML entities from a given string. * * @param html String that contain HTML entities. * * @example * ```js * import { decodeEntities } from '@wordpress/html-entities'; * * const result = decodeEntities( 'á' ); * console.log( result ); // result will be "รก" * ``` * * @return The decoded string. */ export declare function decodeEntities(html: string): string; //# sourceMappingURL=index.d.ts.map