/** * ANSI escape sequences. */ export declare const ansi: { enableAlternativeBuffer: string; disableAlternativeBuffer: string; cursorUp: (count?: number) => string; cursorDown: (count?: number) => string; cursorRight: (count?: number) => string; cursorLeft: (count?: number) => string; cursorHome: string; eraseScreen: string; eraseSavedLines: string; eraseEndLine: string; eraseStartLine: string; removeStyles: (str: string) => string; styleRGB: (r: number, g: number, b: number, foreground?: boolean) => string; styleReset: string; styleBoldRed: string; styleBoldGreen: string; styleBrightRed: string; styleBrightGreen: string; styleBrightYellow: string; styleBrightBlue: string; styleBrightPurple: string; styleBrightCyan: string; styleRed: string; styleGreen: string; styleYellow: string; styleBlue: string; stylePurple: string; styleCyan: string; showCursor: string; hideCursor: string; };