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