/** * Removes ANSI escape sequences (e.g. terminal color codes) from a string, * keeping the visible text. Unlike `sanitizeString`, which strips all * non-printable characters, this targets only ANSI sequences. Handles CSI * sequences (colors, cursor movement) and OSC sequences. * @param {string} string_ - Input string * @returns {string} String without ANSI escape sequences * @example * stripAnsi("\u001B[31mred\u001B[0m"); // "red" */ export declare const stripAnsi: (string_: string) => string;