import { BaseInstrumentation, LogLevel } from '@grafana/faro-core';
import type { ConsoleInstrumentationOptions } from './types';
export declare class ConsoleInstrumentation extends BaseInstrumentation {
    private options;
    readonly name = "@grafana/faro-web-sdk:instrumentation-console";
    readonly version = "1.14.3";
    static defaultDisabledLevels: LogLevel[];
    static consoleErrorPrefix: string;
    private errorSerializer;
    constructor(options?: ConsoleInstrumentationOptions);
    initialize(): void;
}
