import type { OwlScopeClientApi, OwlScopePlugin, LogLevel } from '../types.js'; export interface ConsolePluginOptions { levels?: LogLevel[]; preserveOriginal?: boolean; } export declare class ConsolePlugin implements OwlScopePlugin { name: string; private levels; private preserveOriginal; private originals; constructor(opts?: ConsolePluginOptions); install(client: OwlScopeClientApi): void; uninstall(): void; }