import * as Sentry from '@sentry/browser'; import { IEnv } from '../../types'; import { IAnalyticsConfig } from './types'; export declare function initializeSentry(config: IAnalyticsConfig, environment: IEnv, walletAddress?: string, apiKey?: string): void; export declare function updateUser(walletAddress?: string, environment?: IEnv): void; export declare function clearUser(): void; export declare function isAnalyticsEnabled(): boolean; export declare function getSentry(): typeof Sentry | null; export declare function resetAnalytics(): void;