import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; interface VideoViewProps { /** * Style object that will be applied to the underlying native video view. */ style?: StyleProp; /** * How the video should be resized to fit its container. On iOS this maps to * AVLayerVideoGravity, on Android to ExoPlayer's resize mode. * Defaults to "contain" (AspectFit). */ resizeMode?: 'contain' | 'cover' | 'stretch' | 'none'; } export declare const VideoView: React.FC; export default VideoView;