import type { LoggingFunctionWithPosition, LogHandler, RollupLog } from '../types/misc';
import { type LogLevel, type LogLevelOption } from './logging';
export declare const normalizeLog: (log: RollupLog | string | (() => RollupLog | string)) => RollupLog;
export declare function getLogHandler(level: LogLevel, code: string, logger: LogHandler, pluginName: string, logLevel: LogLevelOption): LoggingFunctionWithPosition;
