import type { LogLevel } from '@webpieces/core-util'; /** * webpieces LogLevel → bunyan numeric level. webpieces has no `fatal`; its 5 * levels map onto bunyan TRACE(10)/DEBUG(20)/INFO(30)/WARN(40)/ERROR(50). * @google-cloud/logging-bunyan turns these into GCP severities * (10/20→DEBUG, 30→INFO, 40→WARNING, 50→ERROR). */ export declare const LEVEL_TO_BUNYAN: Record; export declare function logLevelToBunyanLevel(level: LogLevel): number;