/** * Write raw and RLE blocks. */ export declare function writeRawBlock(data: Uint8Array, offset: number, size: number, last: boolean): Uint8Array; export declare function writeRLEBlock(byte: number, size: number, last: boolean): Uint8Array;