/// import { ViewProps } from 'react-native'; import type { VideoAspect, VideoResolution } from './native/ZoomVideoSdk'; /** * Define parameters that needed by native Zoom video view. */ declare type ZoomViewProps = { userId: string | null; sharing?: boolean; preview?: boolean; fullScreen?: boolean; videoAspect?: VideoAspect; videoResolution?: VideoResolution; hasMultiCamera?: boolean; multiCameraIndex?: string | null; isPiPView?: boolean; } & ViewProps; /** * Getting video view from native layer. */ export declare const ZoomView: (props: ZoomViewProps) => JSX.Element | null; export {};