import type { Logger } from '@xylabs/logger'; import type { WrappedWinstonLogger } from './WrappedWinstonLogger.ts'; /** * Static instance to prevent multiple instances of the same logger * with the same config */ declare global { var xy: { defaultLogger?: WrappedWinstonLogger; }; } /** * Returns the singleton default logger instance, creating one if it does not exist. * @returns The default logger. */ export declare const getDefaultLogger: () => Logger; //# sourceMappingURL=getDefaultLogger.d.ts.map