/// import Codable from './Codable'; export default class FixedBytes implements Codable { size: number; data: Uint8Array; static from(size: number, data: Uint8Array): FixedBytes; static default(size: number): FixedBytes; static fromHexString(size: number, hex: string): FixedBytes; static fromBuffer(size: number, data: Buffer): FixedBytes; constructor(size: number, data: Uint8Array); get raw(): Uint8Array; setData(data: Uint8Array): void; toString(): string; toTypeString(): string; toHexString(): string; equals(target: FixedBytes): boolean; }