import type { DXFTuple, PartialPoint3D } from '../../types'; export declare const TYPE = "LINE"; interface LineEntity { type: typeof TYPE; start: PartialPoint3D; end: PartialPoint3D; thickness?: number; [key: string]: unknown; } export declare const process: (tuples: DXFTuple[]) => LineEntity; declare const _default: { TYPE: string; process: (tuples: DXFTuple[]) => LineEntity; }; export default _default; //# sourceMappingURL=line.d.ts.map