/** * Logging utility with verbose mode support */ export declare class Logger { private isVerbose; constructor(verbose?: boolean); info(message: string): void; success(message: string): void; warn(message: string): void; error(message: string): void; verbose(message: string): void; debug(message: string): void; } //# sourceMappingURL=logger.d.ts.map