import { WebPlugin } from '@capacitor/core'; import type { DidCrashOnPreviousExecutionResult, FirebaseCrashlyticsPlugin, IsEnabledResult, LogOptions, RecordExceptionOptions, SetCustomKeyOptions, SetEnabledOptions, SetUserIdOptions } from './definitions'; export declare class FirebaseCrashlyticsWeb extends WebPlugin implements FirebaseCrashlyticsPlugin { crash(): Promise; setCustomKey(_options: SetCustomKeyOptions): Promise; setUserId(_options: SetUserIdOptions): Promise; log(_options: LogOptions): Promise; setEnabled(_options: SetEnabledOptions): Promise; isEnabled(): Promise; didCrashOnPreviousExecution(): Promise; sendUnsentReports(): Promise; deleteUnsentReports(): Promise; recordException(_options: RecordExceptionOptions): Promise; }