export declare namespace Converter { const _bytes4: Uint8Array; const _float: Float32Array; function floatToBytes(value: number): Uint8Array; } export declare class DataArray { private _bytes; private count; private capacity; constructor(_bytes?: Uint8Array); clear(): void; bytes(): Uint8Array; private grow; appendBytes(bytes: Uint8Array): DataArray; appendFloat(value: number): this; }