import { TransformedPoint, Point3D } from '../types'; import { ShapeInstance } from './shape'; export type Line = TransformedPoint[] & { centroid: Point3D; }; interface Lines3DInstance extends ShapeInstance { data(data: Datum[][]): Line[]; } export declare function lines3D(): Lines3DInstance; export {};