import { type AppCheckOptions, type AppCheckTokenResult } from '@react-native-firebase/app/dist/module/internal/web/firebaseAppCheck'; interface AppCheckModule { initializeAppCheck(appName: string, options: AppCheckOptions): Promise; setTokenAutoRefreshEnabled(appName: string, isTokenAutoRefreshEnabled: boolean): Promise; getLimitedUseToken(appName: string): Promise; getToken(appName: string, forceRefresh: boolean): Promise; addAppCheckListener(appName: string): Promise; removeAppCheckListener(appName: string): Promise; } /** * This is a 'NativeModule' for the web platform. * Methods here are identical to the ones found in * the native android/ios modules e.g. `@ReactMethod` annotated * java methods on Android. */ declare const appCheckWebModule: AppCheckModule; export default appCheckWebModule; //# sourceMappingURL=RNFBAppCheckModule.d.ts.map