/** * Remove ANSI escape codes from a string. * * @param string - String with potential ANSI codes. * @returns String without ANSI codes. */ export declare function stripAnsi(string: string): string;