import { PathInfo } from '../types.js'; import 'fs'; declare class Colors { private colorEnabled; setColorMode(enabled: boolean): void; success(text: string): string; error(text: string): string; warning(text: string): string; info(text: string): string; dim(text: string): string; bold(text: string): string; progress(text: string): string; highlight(text: string): string; formatSuccess(message: string): string; formatError(error: string): string; formatWarning(message: string): string; formatPath(pathInfo: PathInfo): string; formatProgress(current: number, total: number, message: string): string; } declare const colors: Colors; export { colors, colors as default };