import { Node } from '../../interfaces'; /** * Custom hook to retrieve the currently selected node in the editor. * It uses the first item from the selection array to find the corresponding node in the scene store. */ declare function useSelectedNode(): Node; export { useSelectedNode };