export declare abstract class WLZMABase { protected readonly numWorkers: number; protected queue: any[][]; protected url: any; protected workers: T[]; protected listeners: any[]; protected isReady: boolean; protected started: number; protected idle: number; protected next: number; constructor(numWorkers: number, lzmaWorkerBlob: any); protected onManagerReady(): void; protected mergeDecodedBuffers(buffers: Uint8Array[]): Uint8Array; protected tick(): void; protected decode(array: Uint8Array): Promise; }