/**
* ExtData is used to handle Extension Types that are not registered to ExtensionCodec.
*/exportdeclareclassExtData {
readonlytype: number;
readonlydata: Uint8Array | ((pos: number) =>Uint8Array);
constructor(type: number, data: Uint8Array | ((pos: number) => Uint8Array));
}