import Block from 'DataTypes/Block'; import Reporter from 'Reporter/Reporter'; export default class RawData extends Block { data: ArrayBuffer; constructor(data: ArrayBuffer, length: number); toString(): string; static toHexString(data: Uint8Array): string; toTextString(): any; toUint8Array(): Uint8Array; printOn(report: Reporter): void; className(): string; size(): number; }