import type * as lite from 'firebase/firestore/lite'; export type DocumentReference = lite.DocumentReference; export type DocumentData = lite.DocumentData; export type Query = lite.Query; export type DocumentSnapshot = lite.DocumentSnapshot; export type QuerySnapshot = lite.QuerySnapshot; export type QueryDocumentSnapshot = lite.QueryDocumentSnapshot; export type CountSnapshot = lite.AggregateQuerySnapshot<{ count: lite.AggregateField; }, any, DocumentData>;