import type { AppCheckProvider, AppCheckToken, CustomProviderOptions, ReactNativeFirebaseAppCheckProviderOptionsMap as ProviderOptions } from './types/appcheck'; /** * @public Use this to configure providers for android, iOS and "other" platforms. */ export declare class ReactNativeFirebaseAppCheckProvider implements AppCheckProvider { providerOptions?: ProviderOptions; constructor(options?: ProviderOptions); configure(options: ProviderOptions): void; getToken(): Promise; } /** * @public Use this to configure a Custom Provider on "other" platform. This will not work on iOS and android. */ export declare class CustomProvider implements AppCheckProvider { private _customProviderOptions; constructor(_customProviderOptions: CustomProviderOptions); getToken(): Promise; } //# sourceMappingURL=providers.d.ts.map