;
- };
-}
-
-/**
- * @deprecated Use NativeMethods instead.
- */
-export type NativeMethodsMixin = NativeMethods;
-/**
- * @deprecated Use NativeMethods instead.
- */
-export type NativeMethodsMixinType = NativeMethods;
-
-/**
- * Represents a native component, such as those returned from `requireNativeComponent`.
- *
- * @see https://github.com/facebook/react-native/blob/v0.62.0-rc.5/Libraries/Renderer/shims/ReactNativeTypes.js
- *
- * @todo This should eventually be defined as an AbstractComponent, but that
- * should first be introduced in the React typings.
- */
-export interface HostComponent
- extends Pick<
- React.ComponentClass
,
- Exclude, 'new'>
- > {
- new (props: P, context?: any): React.Component & Readonly;
-}
diff --git a/Libraries/Renderer/shims/ReactNativeTypes.js b/Libraries/Renderer/shims/ReactNativeTypes.js
index c69fed7ff44fe7..e1e8dfaff3b060 100644
--- a/Libraries/Renderer/shims/ReactNativeTypes.js
+++ b/Libraries/Renderer/shims/ReactNativeTypes.js
@@ -6,7 +6,7 @@
*
* @noformat
* @flow strict
- * @generated SignedSource<>
+ * @generated SignedSource<<81b3507b34f3a91f9bf71beb0f487340>>
*
* This file was sync'd from the facebook/react repository.
*/
@@ -141,6 +141,7 @@ type InspectorDataGetter = (
}>;
export type InspectorData = $ReadOnly<{
+ closestInstance?: mixed,
hierarchy: Array<{
name: ?string,
getInspectorData: InspectorDataGetter,
@@ -153,7 +154,6 @@ export type InspectorData = $ReadOnly<{
export type TouchedViewDataAtPoint = $ReadOnly<{
pointerY: number,
touchedViewTag?: number,
- closestInstance?: mixed,
frame: $ReadOnly<{
top: number,
left: number,