import { DebugConfig } from '../types/index.js'; export declare class Logger { private readonly config; constructor(config: DebugConfig); isDebugMode(): boolean; debug(message: string): void; verbose(message: string): void; info(message: string): void; error(message: string, error?: Error): void; progress(current: number, total: number, operation: string): void; }