export declare const KB = 1024; export declare const MB: number; export declare const GB: number; export declare const DEFAULT_CHUNK_SIZE: number; export declare const DEFAULT_MAX_CHUNK_SIZE: number; export declare const DEFAULT_MIN_CHUNK_SIZE: number; export declare const DEFAULT_CONCURRENT_CHUNKS = 2; export declare const DEFAULT_CONCURRENT_FILES = 1; export declare const DEFAULT_MAX_FILE_SIZE: number; export declare const UploadStatus: { readonly PENDING: "pending"; readonly PREPARING: "preparing"; readonly UPLOADING: "uploading"; readonly PAUSED: "paused"; readonly MERGING: "merging"; readonly SUCCESS: "success"; readonly FAILED: "failed"; readonly CANCELLED: "cancelled"; }; export type UploadStatusType = (typeof UploadStatus)[keyof typeof UploadStatus]; export declare const ChunkStatus: { readonly PENDING: "pending"; readonly UPLOADING: "uploading"; readonly COMPLETED: "completed"; readonly FAILED: "failed"; }; export type ChunkStatusType = (typeof ChunkStatus)[keyof typeof ChunkStatus];