/**
 * 解析Uint8Array, 生成相应字符串
 * @param uint8array
 * @param start
 * @param checkLength
 */
declare function decodeUTF8(uint8array: Uint8Array): string;
export default decodeUTF8;
