import { Object3D } from 'three';
import { LineSegments } from 'three';
import { BaseSopNodeType } from '@polygonjs/polygonjs/dist/src/engine/nodes/sop/_Base';
import { CoordinatesCollection } from './CoordinatesCollection';
export declare class FeatureConverter {
    private node;
    private name;
    private features;
    id: number | undefined;
    constructor(node: BaseSopNodeType, name: string, features: any[]);
    createObject(): Object3D | undefined;
    _createLine(coordinates_collection: CoordinatesCollection): LineSegments;
    private _createAllCoordinatesCollections;
    private _create_coordinates;
}
