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