/* tslint:disable */ /* eslint-disable */ /** * Highlight sounds in the text with html tags (wasm) * * ## Example * * ```js * import {highlight_wasm} from "text-to-sounds"; * * console.log(highlight_wasm("The text just in case") === "The text just in case"); // true * ``` * @param {string} text * @returns {string} */ export function highlight_wasm(text: string): string;