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