/** * Decodes a binary patch using a reference file to reconstruct the target file. * * @param reference - The reference data * @param patch - The patch data to decode * @returns The decoded target data * @throws When patch is truncated or reference bounds are exceeded */ export declare function decodePatch(reference: Uint8Array, patch: Uint8Array): Uint8Array;