import { BasicFirestore } from './basic-firestore.provider'; import * as firebase from 'firebase'; import 'firebase/firestore'; export declare class FirestoreProvider implements BasicFirestore { db: firebase.firestore.Firestore; constructor(); getCollection(name: string): Promise; watchCollection(name: string): firebase.firestore.CollectionReference; addToCollection(name: string, item: any): Promise; getDocument(name: string): Promise; watchDocument(name: string): firebase.firestore.DocumentReference; addDocument(name: string, item: any): Promise; updateDocument(name: string, item: any): Promise; removeDocument(name: string): Promise; unsubscribe(subscriptions: any): any; }