import { PolylineEntityData } from './handlers/entity/polyline'; import { LwPolylineEntityData } from './handlers/entity/lwpolyline'; import { EntityData } from './handlers/entities'; export declare const polyfaceOutline: (entity: PolylineEntityData | LwPolylineEntityData) => number[][][]; /** * Convert a parsed DXF entity to a polyline. These can be used to render the * the DXF in SVG, Canvas, WebGL etc., without depending on native support * of primitive objects (ellispe, spline etc.) */ declare const _default: (entity: EntityData, options?: { interpolationsPerSplineSegment?: number; }) => number[][]; export default _default;