import { BufferGeometry, Matrix4, Mesh, MeshBasicMaterial, Plane, Vector4 } from "three"; export class ShadowMesh extends Mesh { readonly isShadowMesh: true; meshMatrix: Matrix4; constructor(mesh: Mesh); update(plane: Plane, lightPosition4D: Vector4): void; }