import { CollectionReference, QuerySnapshot, DocumentData } from "firebase/firestore"; import { FunctionCallback, ConstraintObject, Process } from "../../base"; declare type Param = { collection: CollectionReference; constraints: ConstraintObject; onCompleted?: (data: QuerySnapshot) => void; onError?: (error: any) => void; }; declare const QueryDocCallback: FunctionCallback; export default QueryDocCallback;