/*! Copyright 2025 the gnablib contributors MPL-1.1 */ export declare abstract class AByteReader { protected _buff: Uint8Array; protected _ptr: number; protected constructor(_buff: Uint8Array); get unread(): number; skip(count: number): void; }