import type { DXFTuple, PartialPoint3D } from '../../types'; export declare const TYPE = "MLINE"; interface MLineEntity { type: typeof TYPE; startPoint?: PartialPoint3D; endPoint?: PartialPoint3D; vertexCount?: number; styleName?: string; [key: string]: unknown; } export declare const process: (tuples: DXFTuple[]) => MLineEntity; declare const _default: { TYPE: string; process: (tuples: DXFTuple[]) => MLineEntity; }; export default _default; //# sourceMappingURL=mline.d.ts.map