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