declare class Logger {
    static isDebug: boolean;
    static log(message: string, value?: unknown): void;
    static warn(message: string, value?: unknown): void;
    static error(message: string, value?: unknown): void;
}
export { Logger };
