import { TransformedPoint, Point3D } from '../types'; import { ShapeInstance } from './shape'; export type Triangle = TransformedPoint[] & { ccw: boolean; centroid: Point3D; }; interface Triangles3DInstance extends ShapeInstance { data(data: Datum[][]): Triangle[]; draw(triangles: Datum[]): string; } export declare function triangles3D(): Triangles3DInstance; export {};