import { Event, EventHint, Integration } from '@sentry/core'; /** Adds SDK info to the event */ export declare class LinkedErrors implements Integration { /** * @inheritDoc */ static id: string; /** * @inheritDoc */ name: string; /** * @inheritDoc */ private readonly _key; /** * @inheritDoc */ private readonly _limit; /** * @inheritDoc */ constructor(options?: { key?: string; limit?: number; }); /** * @inheritDoc */ setupOnce(): void; /** * @inheritDoc */ processEvent(event: Event, hint?: EventHint): Event; /** * @inheritDoc */ private _handler; /** * @inheritDoc */ private _walkErrorTree; } /** * LinkedErrors integration */ export declare const linkedErrorsIntegration: (options?: { key?: string; limit?: number; }) => Integration; //# sourceMappingURL=linkederrors.d.ts.map