import * as React from 'react'; import { Vector2, Vector3, Color, ColorRepresentation } from 'three'; import { ReactThreeFiber } from '@react-three/fiber'; import { LineMaterial, LineMaterialParameters, Line2 } from 'three-stdlib'; export type LineProps = { points: Array; vertexColors?: Array; lineWidth?: number; } & Omit & Omit, 'args'> & Omit, 'color' | 'vertexColors' | 'args'> & { color?: ColorRepresentation; }; export declare const Line: React.ForwardRefExoticComponent & React.RefAttributes>; //# sourceMappingURL=Line.d.ts.map