import type { OwlScopeClientApi, OwlScopePlugin } from '../types.js'; /** Captures uncaught errors and unhandled promise rejections across browser, * React Native (Hermes/JSC), and Node. Each environment exposes a different * global, so we feature-detect rather than hard-coding `window`. */ export declare class ErrorsPlugin implements OwlScopePlugin { name: string; private onErrorListener; private onRejectionListener; private rnPreviousHandler; private rnRestored; install(client: OwlScopeClientApi): void; uninstall(): void; }