import { OnProgressType, ResolveInputType } from './types';
/**
* This is where the SDK decides to use the browser environment or the node environment
* The browser version is using the web worker for processing but the node version doesn't
*/
export declare const createFileChunks: (params: {
parallelTasksAmount: number;
file: File;
worker?: Worker;
onProgress?: OnProgressType;
}) => Promise;