import { ILogger } from './types.js';
import '@lsk4/colors';

interface LazyLogFunction {
    (ns?: string): ILogger;
    loggers: Record<string, ILogger>;
    trace: ILogger['trace'];
    debug: ILogger['debug'];
    info: ILogger['info'];
    warn: ILogger['warn'];
    error: ILogger['error'];
    fatal: ILogger['fatal'];
}
declare const lazyLog: LazyLogFunction;

export { lazyLog };
