import { CommonEntityData } from './common'; import { VertexEntityData } from './vertex'; export declare const TYPE = "LWPOLYLINE"; export interface LwPolylineEntityData extends CommonEntityData { type: typeof TYPE; closed: boolean; polygonMesh?: boolean; polyfaceMesh?: boolean; thickness?: number; vertices: VertexEntityData[]; } export declare const process: (tuples: [type: number, value: any][]) => LwPolylineEntityData; declare const _default: { TYPE: string; process: (tuples: [type: number, value: any][]) => LwPolylineEntityData; }; export default _default;