import { type AspectsProps } from '../../model/AspectsProps'; import { type AlignProps, type HeadlineCommonProps, type TitleProps } from '../../model/HeadlineType'; import { type IconProps } from '../../model/Picture'; import { type LinkButtonContent } from '../../ui-kit/LinkButton/LinkButtonContent'; import { type UniBlockContent } from '../../UniBlock/UniBlockProps'; export declare type TariffsCardCellProps = HeadlineCommonProps & { buttons?: LinkButtonContent[]; }; /** * @title Карточка тарифной карусели */ export declare type CarouselTariffsCardContent = UniBlockContent & TitleProps & IconProps & AlignProps & AspectsProps & { /** @title Выделить карточку */ isHighlighting?: boolean; /** @title Кнопка */ button?: LinkButtonContent; /** @title Ячейка */ cardCells?: TariffsCardCellProps[]; /** @title Показывать строк */ visibleCellsCount?: number; };