import type { Encoding } from './Encoding.js';
/**
 * Converts an ArrayBuffer to a string.
 *
 * @param arrayBuffer - The ArrayBuffer to convert.
 * @param encoding - The encoding to use.
 * @returns The string representation of the ArrayBuffer.
 *
 * @group Utils
 *
 * @beta
 *
 * @example
 * {@includeCode ../../test/utils/arrayBufferToString.test.ts#example}
 */
export declare function arrayBufferToString(arrayBuffer: ArrayBuffer, encoding: Encoding): string;
//# sourceMappingURL=arrayBufferToString.d.ts.map