export type LogEntity = {
    timestamp: number;
    level: LogLevel;
    category: LogCategory;
    tag: string;
    message: string;
    threadName?: string;
    extras?: Record<string, string>;
    throwable?: string;
};
export declare enum LogLevel {
    VERBOSE = 1,
    DEBUG = 2,
    INFO = 3,
    WARN = 4,
    ERROR = 5
}
export declare enum LogCategory {
    PROCESS = 0,
    RESULT = 1,
    NETWORK = 2,
    PROBE = 3,
    ERROR = 4
}
//# sourceMappingURL=log.d.ts.map