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