import type { LogLevel, Minifier, MinifyLevel } from '../../_exports/index.js'; export declare function parseMinifier(value: string | undefined): Minifier | undefined; export declare function parseMinifyLevel(value: string | undefined): MinifyLevel | undefined; export declare function parseLogLevel(value: string | undefined): LogLevel | undefined; /** Whether an event of severity `eventLevel` should be surfaced when the * configured threshold is `threshold`. Host-side backstop for the * build-time DCE (which can leak in callback-position `console.debug` * calls). */ export declare function logLevelAllows(threshold: LogLevel, eventLevel: 'error' | 'warn' | 'info' | 'log' | 'debug'): boolean; //# sourceMappingURL=parseMinifier.d.ts.map