import React from 'react'; import { ImageResizeMode } from 'react-native'; import { ReactVideoProps, VideoRef } from 'react-native-video'; import { ManifestEventsTypes } from '../hooks/use-manifest'; import { QualityTypes } from '../types'; type ReactVideoPropsOmit = Omit; export type ReactNativeKinescopeVideoProps = ReactVideoPropsOmit & ManifestEventsTypes & { preload?: boolean; videoId: string; posterResizeMode?: ImageResizeMode; externalId?: string; quality?: QualityTypes; autoSeekChangeQuality?: boolean; referer?: string; drmAuthToken?: string; }; declare const _default: React.ForwardRefExoticComponent>; export default _default; //# sourceMappingURL=video.d.ts.map