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