import type { Emitter } from './emitter.js'; /** * Monitors the browser for unhandled exceptions and unhandled * promise rejections, passing them to the telemetry emitter * so they can be reported by the Node.js orchestrator. */ export declare class BrowserExceptionsManager { #private; constructor(emitter: Emitter); /** * Start listening to window global errors. */ monitor(): void; /** * Stop listening to window global errors. */ stop(): void; }