import { StorageReference } from "firebase/storage"; import { FunctionCallback, Process } from "../../base"; declare type Param = { ref: StorageReference; onCompleted?: (data: boolean) => void; onError?: (error: any) => void; }; declare const DeleteFileCallback: FunctionCallback; export default DeleteFileCallback;