import React from 'react'; import { PlaySource } from '../types'; type NativeVideoProps = React.HTMLProps; type VideoProps = NativeVideoProps & { paused: boolean; currentQuality: string; useAutoQuality: boolean; sources: PlaySource[]; onRef: (el: HTMLVideoElement | null) => void; }; declare const _default: { pluginName: string; VideoComponent: React.FC; willHandleSrcChange: boolean; }; export default _default;