import { HemisphereLight } from "three"; import VNode from "../../../vnode"; import { HemisphereLightProps } from "./component"; import { VnodeProps } from "../../../types/vnodeProps"; export declare class HemisphereLightVNode extends VNode { static NAME: string; light: HemisphereLight; constructor(props: VnodeProps); update(props: HemisphereLightProps): void; }