/**
 * 获取文件的hash值，即md5值
 * @param file 要分割的文件对象
 * @param chunkSize 分片大小，默认每片大小为为3M
 * @returns
 */
declare const getFileHash: (file: File, chunkSize?: number) => Promise<unknown>;
/**
 *
 * @param startByte 分片起始位置
 * @param endByte 分片结束位置
 * @returns
 */
declare const getChunk: (file: File, startByte: number, endByte: number) => Blob;
export { getFileHash, getChunk };
