import { FC } from 'react'; import { VideoTileInterface } from '../VideoTile'; export interface VideoWrapperProps { videoTiles: VideoTileInterface[]; backgroundColor?: string; title: string; id: string; internalName?: string; variant?: string; } export declare const VideoWrapper: FC;