import * as Sentry from '@sentry/browser'; export { Sentry }; export * from './types'; export declare type IgnoreError = string | RegExp; export declare type Settings = { context?: { [key: string]: unknown; }; ignoreErrors?: IgnoreError[]; sentry?: Sentry.BrowserOptions; sentryKey?: string; sentryProject?: string; userID?: number | null; }; declare class Metrics { settings: Required; initialize(settings?: Settings): void; bootstrapNewRelic(): void; bootstrapSentry(): void; bootstrapGoogleAnalytics(): void; isGoogleAnalyticsEnabled(): boolean; isNewRelicEnabled(): boolean; isSentryEnabled(): string; } declare const _default: Metrics; export default _default; //# sourceMappingURL=index.d.ts.map