import type { Signal } from "../.."; import { LogLevelOptions } from "../../core/debug-mode"; declare class Logger { private logLevelKey; private storage; get logLevel(): LogLevelOptions; constructor(); enableLogging: (type: LogLevelOptions) => void; disableLogging: () => void; private log; info: (...args: any[]) => void; debug: (...args: any[]) => void; logSignal: (signal: Signal) => void; } export declare const logger: Logger; export {}; //# sourceMappingURL=index.d.ts.map