import { Scope } from '@sentry/browser'; /** * Use a scope to isolate the error context from any parent sites. * * When capturing errors or messages, any tags or extras set will need * to be cleared after the error is sent to Sentry, to attempt to avoid * leaking information between different errors and messages. Use the * `.clear()` method to achieve this. */ declare const scope: Scope; export declare function captureException(error: unknown, tags: { [key: string]: string; }, extras?: { [key: string]: unknown; }): void; export default scope;