/** * This function is for internal use only. * Convert the array buffer result coming from an hybrid object to an int 8 array */ export declare function bufferToInt8Array(buffer: ArrayBuffer): Int8Array; /** * This function is for internal use only. * Converts an int8array to an array buffer for use with the hybrid objects */ export declare function int8ArrayToBuffer(data: Int8Array): ArrayBuffer;