import { BlobCreationConfig, BytesArray, ImageCreationConfig, TypedArray } from '../sharedTypes'; export default class TypedArrayConverter { private original; constructor(original: TypedArray); toUint8Array(): Uint8Array; toInt8Array(): Int8Array; toInt16Array(): Int16Array; toUint16Array(): Uint16Array; toInt32Array(): Int32Array; toUint32Array(): Uint32Array; toBigUint64Array(): BigUint64Array; toBigInt64Array(): BigInt64Array; toFloat32(): Float32Array; toText(): string; toBlob(config?: BlobCreationConfig): Promise; toImage(config?: ImageCreationConfig): Promise; toBytes(): BytesArray; toDecimalBytes(): number[]; }