/** * Encodes pixel data as an uncompressed 16-bit grayscale TIFF file. * Pixel values are linearly normalized from their min/max range to [0, 65535]. * The output uses little-endian (Intel) byte order. * * @param pixels - Row-major Float32Array of pixel values (length = width × height) * @param width - Image width in pixels * @param height - Image height in pixels * @returns ArrayBuffer containing a valid TIFF file */ export declare function encodeToTIFF(pixels: Float32Array, width: number, height: number): ArrayBuffer;