import { ByteArray } from '../types.js'; /** * Converts a byte array to a string using UTF-8 decoding. * * @param bytes - The byte array to decode. * @returns The decoded string. * * @example * ```typescript * bytesToString(new Uint8Array([72, 101, 108, 108, 111])) // Returns 'Hello' * ``` */ export declare function bytesToString(bytes: ByteArray): string;