import type { FileLike, ChunkedOptions, MandatoryChunkedOptions } from '../types'; declare const getChunkedSenderMandatoryOptions: (options: ChunkedOptions) => MandatoryChunkedOptions; declare const isChunkingSupported: () => boolean; declare const CHUNKING_SUPPORT: boolean; declare const getChunkDataFromFile: (file: FileLike, start: number, end: number) => Blob; export { CHUNKING_SUPPORT, getChunkedSenderMandatoryOptions, getChunkDataFromFile, isChunkingSupported, }; //# sourceMappingURL=utils.d.ts.map