/** * Binary DXF decoder. See AutoCAD DXF Reference — "About Binary DXF Files". * Group/value typing follows ezdxf's `binary_tags_loader`. */ export declare const BINARY_DXF_SENTINEL: Uint8Array; export type BinaryDxfDecodeOptions = { /** Fallback when $DWGCODEPAGE is missing (pre-R2007 files). */ encoding?: string; /** Passed to {@link TextDecoder} for string-valued groups. */ encodingFailureFatal?: boolean; }; export declare function isBinaryDxf(data: Uint8Array): boolean; export declare function isBinaryDxfText(text: string): boolean; /** * Decode a binary DXF file into line pairs compatible with {@link DxfArrayScanner}. */ export declare function binaryDxfToLines(data: Uint8Array, options?: BinaryDxfDecodeOptions): string[]; //# sourceMappingURL=binaryDxf.d.ts.map