import { DxfStreamReaderBase } from './DxfStreamReaderBase.js'; import { DxfCode } from '../../../DxfCode.js'; export declare class DxfBinaryReader extends DxfStreamReaderBase { static readonly sentinel: string; static readonly sentinelBytes: Uint8Array; protected get baseStream(): Uint8Array; protected _data: Uint8Array; protected _view: DataView; protected _pos: number; constructor(stream: Uint8Array); start(): void; protected readStringLine(): string; protected readCode(): DxfCode; protected lineAsBool(): boolean; protected lineAsDouble(): number; protected lineAsShort(): number; protected lineAsInt(): number; protected lineAsLong(): number; protected lineAsHandle(): number; protected lineAsBinaryChunk(): Uint8Array; } //# sourceMappingURL=DxfBinaryReader.d.ts.map