// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React, { HTMLAttributes } from 'react'; import { StyledRemoteVideo } from './Styled'; import { BaseProps } from '../Base'; export interface RemoteVideoProps extends Omit, 'css'>, BaseProps { enabled: boolean attendeeName?: string; videoEleRef: ((instance: HTMLVideoElement | null) => void); } const RemoteVideo: React.FC = ({ tag, className, videoEleRef, attendeeName, ...rest }) => { return ( ); } export default RemoteVideo;