import { type LinkButtonVersion } from '../../model/LinkButtonVersion'; import { type LinkProps } from '../../model/LinkProps'; import { type Picture } from '../../model/Picture'; /** @deprecated */ export interface ButtonCommonContent extends LinkProps { version?: LinkButtonVersion; /** @title Метод */ method?: 'LINK' | 'POST'; } /** @deprecated */ /** * @title Кнопка */ export interface LinkButtonContent extends ButtonCommonContent { /** @title Закругленные углы */ rounded?: boolean; /** @title Иконка слева */ icon?: Picture; /** @title Иконка справа */ iconRight?: Picture; /** @title Верхний текст */ aboveText?: string; }