import React, { CSSProperties } from 'react'; import { UIKitUser } from './PropsContext'; /** * React component to display the user video in maximized view */ declare const MaxVideoView: (props: { user: UIKitUser; style?: React.CSSProperties; }) => JSX.Element; export default MaxVideoView;