import { Color, ColorRepresentation } from 'three'; import { ReactThreeFiber, Vector2 as FiberVector2, Vector3 as FiberVector3 } from '@react-three/fiber'; import { LineMaterial, LineMaterialParameters, Line2, LineSegments2 } from 'three-stdlib'; import { ForwardRefComponent } from '../helpers/ts-utils'; export type LineProps = { points: ReadonlyArray; vertexColors?: ReadonlyArray; lineWidth?: number; segments?: boolean; } & Omit & Omit, 'args'> & Omit, 'color' | 'vertexColors' | 'args'> & { color?: ColorRepresentation; }; export declare const Line: ForwardRefComponent;