import { ReactNode } from 'react'; export interface VideoTileInterface { id: string; title?: string; videoId: string; thumbnailImage: string; displayType: string; maxWidth?: string | number; videoPlayer: string; transcript?: string; description?: string | ReactNode; internalName?: string; enableModal?: boolean; }