import { Observable } from 'rxjs'; type RemoteConfig = import('firebase/remote-config').RemoteConfig; type RemoteConfigValue = import('firebase/remote-config').Value; export type AllParameters = { [key: string]: RemoteConfigValue; }; export declare function getValue(remoteConfig: RemoteConfig, key: string): Observable; export declare function getString(remoteConfig: RemoteConfig, key: string): Observable; export declare function getNumber(remoteConfig: RemoteConfig, key: string): Observable; export declare function getBoolean(remoteConfig: RemoteConfig, key: string): Observable; export declare function getAll(remoteConfig: RemoteConfig): Observable; export {};