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