import { FC } from 'react'; export interface VideoProps { videoId: string; } declare const Video: FC; export default Video;