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