import { QuerySnapshot } from 'firebase-admin/firestore'; export declare class UnimplementedQuerySnapshot implements QuerySnapshot { get query(): FirebaseFirestore.Query; get docs(): FirebaseFirestore.QueryDocumentSnapshot[]; get size(): number; get empty(): boolean; get readTime(): FirebaseFirestore.Timestamp; docChanges(): FirebaseFirestore.DocumentChange[]; forEach(callback: (result: FirebaseFirestore.QueryDocumentSnapshot) => void, thisArg?: any): void; isEqual(other: QuerySnapshot): boolean; }