export declare class Analytics { private client; private tags; private distinctId?; private anonymousId; constructor(); setDistinctId(distinctId: string): void; setTag(key: string, value: string | boolean | number | null | undefined): void; captureException(error: Error, properties?: Record): void; capture(eventName: string, properties?: Record): void; shutdown(status: 'success' | 'error' | 'cancelled'): Promise; } export declare const analytics: Analytics; //# sourceMappingURL=analytics.d.ts.map