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