/**
 * Check if a string has ANSI escape codes
 */
declare function hasAnsi(input: string): boolean;

export default hasAnsi;
