import { InstrumentationBase } from '@opentelemetry/instrumentation'; import { BunyanInstrumentationConfig } from './types'; import type * as BunyanLogger from 'bunyan'; export declare class BunyanInstrumentation extends InstrumentationBase { constructor(config?: BunyanInstrumentationConfig); protected init(): any[]; getConfig(): BunyanInstrumentationConfig; setConfig(config: BunyanInstrumentationConfig): void; private _getPatchedEmit; private _callHook; }