;
- };
-}
-
-/**
- * @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;
-}