import * as React from 'react'; import * as THREE from 'three'; import { ReactThreeFiber } from 'react-three-fiber'; import { LineMaterial, LineMaterialParameters } from 'three/examples/jsm/lines/LineMaterial'; import { Line2 } from 'three/examples/jsm/lines/Line2'; declare type Props = { points: [number, number, number][]; color?: THREE.Color | string | number; vertexColors?: [number, number, number][]; lineWidth?: number; } & Omit, 'args'> & Omit, 'color' | 'vertexColors' | 'resolution' | 'args'>; export declare const Line: React.ForwardRefExoticComponent & React.RefAttributes>; export {};