/// export interface Props { youtubeID: string; onClose?: () => void; onTimeChange?: (time: number) => void; } declare function VideoModal({ youtubeID, onClose, onTimeChange, }: Props): JSX.Element; export default VideoModal;