import type { ILogger, LogFunction } from '../../core'; export declare class NodeLogger implements ILogger { private cache; log(name: string): LogFunction; log(name: string, format: string, ...args: unknown[]): void; }