/** @deprecated use from @xylabs/logger instead */ export type LogFunction = (message?: unknown) => void; /** * Interface to handle overlap between Winston & * `console` with as much congruency as possible. */ /** @deprecated use from @xylabs/logger instead */ export interface Logger { debug: LogFunction; error: LogFunction; info: LogFunction; log: LogFunction; warn: LogFunction; } /** @deprecated use from @xylabs/logger instead */ export declare const LoggerStub = 1; //# sourceMappingURL=Logger.d.ts.map