babylonjs-accessibility 7.28.0 → 7.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,7 @@ declare module BABYLON.Accessibility {
4
4
 
5
5
 
6
6
 
7
+ /// <reference types="react" />
7
8
  /**
8
9
  * The scene tree of the HTML twin. It contain all the top level nodes
9
10
  * @param props
@@ -12,7 +13,7 @@ declare module BABYLON.Accessibility {
12
13
  export function HTMLTwinSceneTree(props: {
13
14
  scene: BABYLON.Scene;
14
15
  options: IHTMLTwinRendererOptions;
15
- }): import("react/jsx-runtime").JSX.Element;
16
+ }): JSX.Element;
16
17
 
17
18
 
18
19
  /// <reference types="react" />
@@ -85,6 +86,7 @@ declare module BABYLON.Accessibility {
85
86
  }
86
87
 
87
88
 
89
+ /// <reference types="react" />
88
90
  /**
89
91
  * An adapter that transforms a Accessible entity in a React element. Contains observables for the events that can
90
92
  * change the state of the entity or the accesible tree.
@@ -95,7 +97,7 @@ declare module BABYLON.Accessibility {
95
97
  node: AccessibilityEntity;
96
98
  scene: BABYLON.Scene;
97
99
  options: IHTMLTwinRendererOptions;
98
- }): import("react/jsx-runtime").JSX.Element | null;
100
+ }): JSX.Element | null;
99
101
 
100
102
 
101
103
  /**