import IEnvironment from "../interface/IEnvironment"; import MeshAppendable from "./core/MeshAppendable"; export default class Environment extends MeshAppendable implements IEnvironment { static componentName: string; static defaults: Partial>; static schema: Required>; constructor(); protected disposeNode(): void; private _texture?; get texture(): string | undefined; set texture(value: string | undefined); }