import React from 'react'; declare enum ViewType { TextureView = "TextureView", SurfaceView = "SurfaceView", UIView = "UIView" } export type NativeViewComponentProps = { viewId: string; kind: ViewType; style?: any; onPlayerViewLoad?: (...args: any) => void; }; export declare const NativeViewComponent: import("react-native").HostComponent; export type PlayerViewComponentProps = Omit & { kind?: ViewType; showDebug?: boolean; onLoad?: (...args: any) => void; }; export declare class PlayerViewComponent extends React.Component { constructor(props: PlayerViewComponentProps); componentWillUnmount(): void; render(): React.CElement & Readonly>; } export {};