/** * Converts an array of 16 byte values to a UUID string format of the form: * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX * @param {Uint8Array} arr - The array of bytes to convert. * @param {number} [offset=0] - The starting index in the array. * @returns {string} The UUID string representation. */ export declare const stringify: (arr: Uint8Array, offset?: number) => string; //# sourceMappingURL=stringify.d.ts.map