import { type AdditionalDescriptionProps, type HeadlineCommonProps, } from '../../model/HeadlineType'; import { type Picture } from '../../model/Picture'; import { type HeadingType } from '../../ui-kit/Heading/HeadingProps'; import { type ImageContent } from '../../ui-kit/Img/ImgProps'; import { type ButtonsSectionContent } from '../../ui-kit/LinkButton/ButtonsSectionContent'; import { type RichTextProps } from '../../ui-kit/RichText/RichTextProps'; import { type UniBlockContent } from '../../UniBlock/UniBlockProps'; /** * @title Мобильное приложение */ export type MobileAppTileContent = UniBlockContent & AdditionalDescriptionProps & HeadlineCommonProps & ButtonsSectionContent & RichTextProps & ImageContent & { // TODO: description для мобильной версии /** @title QR-код */ qr?: Picture; headingType?: HeadingType; };