/** * Log function - defaults to console.log, upgraded to Logger.Log via setLogger. */ export declare let log: (message: string) => void; /** * Error function - defaults to console.error, upgraded to Logger.Error via setLogger. */ export declare let error: (message: string) => void; /** * Upgrades the build tools logger to use the provided Logger class. * Call this synchronously after importing to switch from console to Babylon's Logger. * @param LoggerClass - The Logger class (e.g. from core/Misc/logger) */ export declare function setLogger(LoggerClass: { Log: (message: string) => void; Error: (message: string) => void; }): void; //# sourceMappingURL=buildToolsLogger.d.ts.map