diff --git a/node_modules/react-native/index.js b/node_modules/react-native/index.js
index d59ba34..9f02168 100644
--- a/node_modules/react-native/index.js
+++ b/node_modules/react-native/index.js
@@ -434,33 +434,45 @@ module.exports = {
       );
   },
   // Deprecated Prop Types
+  // get ColorPropType(): $FlowFixMe {
+  //   invariant(
+  //     false,
+  //     'ColorPropType has been removed from React Native. Migrate to ' +
+  //       "ColorPropType exported from 'deprecated-react-native-prop-types'.",
+  //   );
+  // },
+  // get EdgeInsetsPropType(): $FlowFixMe {
+  //   invariant(
+  //     false,
+  //     'EdgeInsetsPropType has been removed from React Native. Migrate to ' +
+  //       "EdgeInsetsPropType exported from 'deprecated-react-native-prop-types'.",
+  //   );
+  // },
+  // get PointPropType(): $FlowFixMe {
+  //   invariant(
+  //     false,
+  //     'PointPropType has been removed from React Native. Migrate to ' +
+  //       "PointPropType exported from 'deprecated-react-native-prop-types'.",
+  //   );
+  // },
+  // get ViewPropTypes(): $FlowFixMe {
+  //   invariant(
+  //     false,
+  //     'ViewPropTypes has been removed from React Native. Migrate to ' +
+  //       "ViewPropTypes exported from 'deprecated-react-native-prop-types'.",
+  //   );
+  // },
   get ColorPropType(): $FlowFixMe {
-    invariant(
-      false,
-      'ColorPropType has been removed from React Native. Migrate to ' +
-        "ColorPropType exported from 'deprecated-react-native-prop-types'.",
-    );
+    return require("deprecated-react-native-prop-types").ColorPropType
   },
   get EdgeInsetsPropType(): $FlowFixMe {
-    invariant(
-      false,
-      'EdgeInsetsPropType has been removed from React Native. Migrate to ' +
-        "EdgeInsetsPropType exported from 'deprecated-react-native-prop-types'.",
-    );
+    return require("deprecated-react-native-prop-types").EdgeInsetsPropType
   },
   get PointPropType(): $FlowFixMe {
-    invariant(
-      false,
-      'PointPropType has been removed from React Native. Migrate to ' +
-        "PointPropType exported from 'deprecated-react-native-prop-types'.",
-    );
+    return require("deprecated-react-native-prop-types").PointPropType
   },
   get ViewPropTypes(): $FlowFixMe {
-    invariant(
-      false,
-      'ViewPropTypes has been removed from React Native. Migrate to ' +
-        "ViewPropTypes exported from 'deprecated-react-native-prop-types'.",
-    );
+    return require("deprecated-react-native-prop-types").ViewPropTypes
   },
 };
 
