import { Scene } from "@babylonjs/core/scene"; /** * Returns the node with the given name in the given scene. * This method also retrieves light nodes from clustered light containers. * @param name defines the name of the node to retrieve. * @param scene defines the reference to the scene to search the node in. * @returns the node if found, otherwise null. */ export declare function getNodeByName(name: string, scene: Scene): import("@babylonjs/core").Node | null; /** * Returns the node with the given id in the given scene. * This method also retrieves light nodes from clustered light containers. * @param id defines the id of the node to retrieve. * @param scene defines the reference to the scene to search the node in. * @returns the node if found, otherwise null. */ export declare function getNodeById(id: string, scene: Scene): import("@babylonjs/core").Node | null;