import * as Sentry from '@sentry/react'; import type { Extra, Extras, Event } from '@sentry/types'; type ReportableEvent = ErrorEvent | PromiseRejectionEvent; type Reportable = Error | ReportableEvent | string; export declare const redactUnsafeEventFields: (event: Event) => Sentry.Event; export declare const boot: () => void; export declare const reportErrorToSentry: (error: Reportable, extraInfo?: { extra?: Extra | Extras; }, getIsEnabled?: () => boolean) => string | undefined; export {};