/** * Returns a THREE.Group in which one can add new THREE objects to the 3d space * @category Render * @since 0.0.1 * @example * ```js * getScene().add(new THREE.DirectionalLight(0x404040)); * ``` */ export declare function getScene(): THREE.Group;