import { Component, ConstructorProps, ContextManager } from '@zcomponent/core'; export type DefaultEnvironmentConstructorProps = ConstructorProps; /** * The default environment component. * * @see https://threejs.org/docs/#api/en/scenes/Scene.environment * @zcomponent * @zgroup Environment * @zicon environment * @ztag three/Environment/DefaultEnvironment * @zparents three/Object3D/Group/** */ export declare class DefaultEnvironment extends Component { private _impl?; /** * Constructs a new DefaultEnvironment. * @param contextManager - The context manager. * @param props - The properties required to construct the DefaultEnvironment. */ constructor(contextManager: ContextManager, props: DefaultEnvironmentConstructorProps); /** * Disposes the DefaultEnvironment. */ dispose(): never; }