import { PointsMaterial } from "three"; import VNode from "../../../vnode"; import { PointsMaterialProps } from "./component"; import { VnodeProps } from "../../../types/vnodeProps"; export declare class PointsMaterialVNode extends VNode { static NAME: string; material: PointsMaterial; constructor(props: VnodeProps); update(props: PointsMaterialProps): void; }