/**
* Removes HTML/XML tags from a string, keeping the text content.
* Unlike `escapeHtml`, which escapes special characters, this deletes the
* tags entirely. The removal repeats until the string is stable so that
* nested constructs (e.g. "ript>") cannot survive a single pass.
* @param {string} string_ - Input string
* @returns {string} String with tags removed
* @example
* stripTags("Hello World
"); // "Hello World"
*/
export declare const stripTags: (string_: string) => string;