/// import { HMSPeer } from '@100mslive/hms-video-store'; export interface VideoPlayerClasses { root?: string; header?: string; video?: string; controls?: string; } export interface VideoPlayerProps { classes?: VideoPlayerClasses; peer: HMSPeer; } export declare const VideoPlayer: ({ classes, peer }: VideoPlayerProps) => JSX.Element;