/** * LZF decompressor — Marc Lehmann's algorithm. * * Used by PCL's PCD `binary_compressed` data section. Pure decompression: * we never need to encode. Algorithm reference: liblzf 3.x lzf_d.c. * * Throws if the bitstream over-runs the input or the declared output length. */ export declare function decompressLZF(input: Uint8Array, outputSize: number): Uint8Array; //# sourceMappingURL=lzf.d.ts.map