/// import { ViewProps } from 'react-native'; export interface RTCVideoViewProps extends ViewProps { mirror?: boolean; objectFit?: 'contain' | 'cover'; streamURL?: string; zOrder?: number; iosPIP?: RTCIOSPIPOptions; onDimensionsChange?: (event: { nativeEvent: { width: number; height: number; }; }) => void; } export interface RTCIOSPIPOptions { enabled?: boolean; preferredSize?: { width: number; height: number; }; startAutomatically?: boolean; stopAutomatically?: boolean; } export default function RTCView({ mirror, objectFit, streamURL, style, onDimensionsChange, }: RTCVideoViewProps): JSX.Element;