import { BatchItem, TusOptions } from './types'; declare const persistResumable: (item: BatchItem, uploadUrl: string, options: TusOptions, identifier?: string) => void; declare const retrieveResumable: (item: BatchItem, options: TusOptions, identifier?: string) => string | void; declare const removeResumable: (item: BatchItem, options: TusOptions, identifier?: string) => void; declare const clearResumables: (options: TusOptions) => void; export { persistResumable, retrieveResumable, removeResumable, clearResumables }; //# sourceMappingURL=resumableStore.d.ts.map