/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ // Keep in sync with https://github.com/facebook/flow/blob/main/lib/react.js export type StatelessFunctionalComponent< P, > = React$StatelessFunctionalComponent

; export type ComponentType<-P> = React$ComponentType

; export type AbstractComponent< -Config, +Instance = mixed, > = React$AbstractComponent; export type ElementType = React$ElementType; export type Element<+C> = React$Element; export type Key = React$Key; export type Ref = React$Ref; export type Node = React$Node; export type Context = React$Context; export type Portal = React$Portal; export type ElementProps = React$ElementProps; export type ElementConfig = React$ElementConfig; export type ElementRef = React$ElementRef; export type Config = React$Config; export type ChildrenArray<+T> = $ReadOnlyArray> | T; // Export all exports so that they're available in tests. // We can't use export * from in Flow for some reason. export { __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, act as unstable_act, Children, Component, Fragment, Profiler, PureComponent, StrictMode, Suspense, SuspenseList, cloneElement, createContext, createElement, createFactory, createMutableSource, createRef, createServerContext, experimental_use, forwardRef, isValidElement, lazy, memo, startTransition, unstable_Cache, unstable_DebugTracingMode, unstable_LegacyHidden, unstable_Offscreen, unstable_Scope, unstable_TracingMarker, unstable_getCacheSignal, unstable_getCacheForType, unstable_useCacheRefresh, unstable_useMemoCache, useId, useCallback, useContext, useDebugValue, useDeferredValue, useEffect, experimental_useEvent, useImperativeHandle, useInsertionEffect, useLayoutEffect, useMemo, useMutableSource, useSyncExternalStore, useReducer, useRef, useState, useTransition, version, } from './src/React';