/** * Converts [ANSI escape sequences](https://en.wikipedia.org/wiki/ANSI_escape_code) * into human readable text. */ declare function prettyAnsi(text: string): string; export default prettyAnsi;