import React from 'react'; import Api from '../api'; interface IRightBarProps { container?: HTMLElement; visibel?: boolean; api: Api; video?: HTMLVideoElement; isLive?: boolean; rightExtContents: React.ReactNode; rightMidExtContents: React.ReactNode; } declare function RightBar({ container, api, rightExtContents, rightMidExtContents }: IRightBarProps): JSX.Element; export default RightBar;