export interface Logger { debug(message: string, ...args: any[]): void; info(message: string, ...args: any[]): void; warn(message: string, ...args: any[]): void; error(message: string, ...args: any[]): void; } export declare const quietConsoleLogger: { debug(_: string): void; info(_: string): void; warn(message: string, ...args: any[]): void; error(message: string, ...args: any[]): void; }; export declare function loggerWithPrefix(logger: Logger, prefix: string): Logger; //# sourceMappingURL=logger.d.ts.map