/**
 * get string from uint8 array
 *
 * @param buffer - Uint8Array
 * @param start - The beginning of the specified portion of the array
 * @param end - The end of the specified portion of the array
 */
export declare const getStringFromUInt8Array: (buffer: Uint8Array, start: number, end: number) => string;
