import utf8 from './utf8'; import hex from './hex'; import base64 from './base64'; declare function bytesToStr( bytes: number[] | Uint8Array | ArrayBufferView, encoding?: 'utf8' | 'hex' | 'base64' | string ): string; export default bytesToStr;