/*! Copyright 2025 the gnablib contributors MPL-1.1 */
import { AByteReader } from './_AByteReader.js';
declare const consoleDebugSymbol: unique symbol;
export declare class ByteReader extends AByteReader {
    read(count: number): Uint8Array;
    rest(): Uint8Array;
    get [Symbol.toStringTag](): string;
    [consoleDebugSymbol](): string;
    static mount(buff: Uint8Array): ByteReader;
}
export {};
