import { type DescriptionProps, type TextProps, type TitleProps } from '../../model/HeadlineType'; import { type Picture } from '../../model/Picture'; import { type UniBlockContent } from '../../UniBlock/UniBlockProps'; /** * @title Форма для создания реферальной ссылки */ export type ReferalFormContent = UniBlockContent & TitleProps & DescriptionProps & { /** @title Адрес страницы с заявкой для реферала */ link?: string; /** @title Кнопка */ button?: TextProps; /** @title Иконка кнопки копирования */ copyIcon?: Picture; };