import type { RequestStrategy } from './RequestStrategy'; import type { Chunk } from './split/FileChunk'; import type { EventEmitter } from '../upload-core/EventEmitter'; export declare class TestRequest implements RequestStrategy { createFile(file: File): Promise; mergeFile(token: string): Promise; patchHash(token: string, hash: string, type: T): Promise; uploadChunk(chunk: Chunk, emitter: EventEmitter<'progress' | 'end'>): Promise; }