export type DxfInputToLinesOptions = { encoding?: string; encodingFailureFatal?: boolean; }; /** * Convert ASCII DXF text to scanner lines. */ export declare function asciiDxfToLines(text: string): string[]; /** * Convert raw DXF bytes to scanner lines (ASCII or binary). */ export declare function dxfInputToLines(data: Uint8Array, options?: DxfInputToLinesOptions): string[]; //# sourceMappingURL=dxfInput.d.ts.map