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