Version: 0.14.1-alpha0.14.2-alpha0.14.7-alpha0.14.8-alpha0.14.9-alpha0.14.10-alpha0.14.11-alpha0.14.12-alpha0.14.130.14.140.14.150.14.160.14.170.14.180.14.190.14.200.14.210.14.220.14.2315.5.015.5.115.5.215.5.315.5.415.5.515.5.615.5.715.5.815.5.915.5.1015.5.1115.5.1215.5.1315.5.1415.5.1515.5.1615.5.1715.5.1815.5.1915.5.2015.5.2116.0.016.0.116.0.216.0.316.0.416.0.516.0.616.0.716.0.816.0.916.0.1016.0.1116.8.016.8.116.8.216.8.316.8.416.8.516.9.016.9.116.9.216.9.316.9.416.9.516.9.616.9.716.9.816.9.916.9.1016.9.1116.9.1216.9.1316.9.1416.9.1516.9.1616.9.1716.9.1816.9.1916.9.2016.9.2116.9.2216.9.2316.9.2417.0.017.0.117.0.217.0.317.0.417.0.517.0.617.0.717.0.817.0.917.0.1017.0.1117.0.1217.0.1317.0.1417.0.1517.0.1617.0.1717.0.1817.0.1917.0.2017.0.2117.0.2217.0.2317.0.2417.0.2518.0.018.0.118.0.218.0.318.0.418.0.518.0.618.0.718.0.818.0.918.0.1018.0.1118.2.018.2.118.2.218.2.318.2.418.2.518.2.618.2.718.2.818.2.918.2.1018.2.1118.2.1218.2.1318.2.1418.2.1518.2.1618.2.1718.2.1818.2.1918.2.2018.2.2118.2.2218.2.2318.2.2418.2.2518.3.018.3.1
/**
* These are types for things that are present in the `experimental` builds of React but not yet
* on a stable build.
*
* Once they are promoted to stable they can just be moved to the main index file.
* To load the types declared here in an actual project, there are three ways. The easiest one,
* if your `tsconfig.json` already has a `"types"` array in the `"compilerOptions"` section,
* is to add `"react-dom/experimental"` to the `"types"` array.
* Alternatively, a specific import syntax can to be used from a typescript file.
* This module does not exist in reality, which is why the {} is important:
* ```ts
* import {} from 'react-dom/experimental'
* ```
* It is also possible to include it through a triple-slash reference:
* /// <reference types="react-dom/experimental" />
* Either the import or the reference only needs to appear once, anywhere in the project.
*/
// See https://github.com/facebook/react/blob/main/packages/react-dom/index.experimental.js to see how the exports are declared,
// but confirm with published source code (e.g. https://unpkg.com/react-dom@experimental) that these exports end up in the published code
import React = require("react");
import ReactDOM = require("./canary");
export {};
declare module "." {
}