import { type LabelProps, type TextProps, type TitleProps } from '../../model/HeadlineType'; import { type UniBlockContent } from '../../UniBlock/UniBlockProps'; export declare type CardTransferFormType = 'private' | 'business'; /** * @title Перевод с карты на карту */ export declare type CardTransferContent = UniBlockContent & LabelProps & TitleProps & { /** @title Кнопка */ button?: TextProps; /** * @title Тип формы * @enumNames ['Частные клиенты', 'Бизнес-клиенты'] */ formType?: CardTransferFormType; };