/** A {@link RegExp} matching ANSI escapes */
export declare const ansiRegExp: RegExp;
/** Strip ANSI characters (colors) from a string */
export declare function stripAnsi(string: string): string;
