import { CollectionReference, DocumentReference } from "firebase/firestore"; import { ConstraintObject, Pagination } from "../../base"; export declare const addDocAsync: (collection: CollectionReference, value: any) => Promise>; export declare const deleteDocAsync: (doc: DocumentReference) => Promise; export declare const getDocAsync: (doc: DocumentReference) => Promise>; export declare const queryDocAsync: (collection: CollectionReference, constraints: ConstraintObject) => Promise>; export declare const queryPaginationAsync: (collection: CollectionReference, pagination: Pagination) => Promise>; export declare const setDocAsync: (doc: DocumentReference, value: any) => Promise; export declare const updateDocAsync: (doc: DocumentReference, value: any) => Promise;