import { Scene } from '@babylonjs/core/scene.js'; import { Nullable } from '@babylonjs/core/types.js'; import { Context } from 'react'; export type SceneContextType = { scene: Nullable; sceneReady: boolean; }; export declare const SceneContext: Context; /** * Get the scene from the context. */ export declare const useScene: () => Nullable;