/// import { BufWrapper } from '@minecraft-js/bufwrapper'; /** * Encode a 32-bit integer (little-endian) * @param value Integer to write * @returns The buffer with the Int32LE */ export declare function writeInt32LE(value: number): Buffer; /** * Decode a 32-bit integer (little-endian) * @param buf Source buffer * @returns The read integer */ export declare function readInt32LE(buf: BufWrapper): number;