import { Adapter, AdapterLog, LogLevel } from '../types'; declare class ConsoleAdapter implements Adapter { info(log: AdapterLog): void; error(log: AdapterLog): void; warn(log: AdapterLog): void; debug(log: AdapterLog): void; static mergeLog(log: AdapterLog, level: LogLevel): string; validate(): boolean; } export { ConsoleAdapter };