import { BinaryOptions } from '../../core/types'; /** * Converts binary data to a string. * * @param binary - The binary data to convert (BufferSource: Uint8Array, ArrayBuffer, or other TypedArray). * @param options - The options for parsing the binary data. * @returns The converted string. * @throws {RangeError} The given charset is not supported or binary size exceeds the limit. * @throws {TypeError} The encoded data was not valid. */ export declare function convertBinaryToString(binary: BufferSource, options: BinaryOptions): string;