import { Node } from "../core/Node.ts"; import type { Geometry } from "../geometry/Geometry.ts"; import type { Material } from "../materials/Material.ts"; /** Point cloud rendered as individual vertices. */ export declare class Points extends Node { type: string; geometry: Geometry | undefined; material: Material | undefined; constructor(geometry?: Geometry | undefined, material?: Material | undefined); clone(): Points; copy(source: Points, recursive?: boolean): this; } //# sourceMappingURL=Points.d.ts.map