import { type LogType } from "../../interfaces/index.js";
export declare class LogLevel {
    private readonly level;
    private constructor();
    satisfies(type: LogType): boolean;
    static from(type: LogType): LogLevel;
}
