import { type TitleProps } from '../../model/HeadlineType'; import { type Picture } from '../../model/Picture'; import { type UniBlockContent } from '../../UniBlock/UniBlockProps'; /** @title Блок Видео */ export declare type VideoContent = UniBlockContent & TitleProps & { /** * @title Ссылка на видео */ url?: string; /** @title Заставка в блоке */ previewImg?: Picture; };