import { FC } from 'react'; import { ReactPlayerProps } from '../../types'; export interface PlayerProps { url: string; className?: string; isFullscreen: boolean; reactPlayerProps: ReactPlayerProps; } /** * Serves for collecting all props from `MediaStore` and passing them to ReactPlayer * @category React Component */ export declare const Player: FC;