/** * Removes ansi escape codes (such as terminal colors) within the given string. * * @category String * @category Package : @augment-vir/common * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common) */ export declare function removeAnsiEscapeCodes(input: string): string; /** {@inheritDoc removeAnsiEscapeCodes} */ export declare const removeColor: typeof removeAnsiEscapeCodes; /** * A RegExp that will match all ansi escape codes (such as terminal colors). Used in * {@link removeAnsiEscapeCodes}. * * @category String * @category RegExp * @category Package : @augment-vir/common * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common) */ export declare const ansiRegExp: RegExp;