import { ReactNode } from 'react'; import { ComponentWithCustomElement } from 'bloko/common/helpers/types'; interface ShareProps { /** Иконка */ icon: ReactNode; /** Число на счетчике */ count?: number; /** Флаг инверсии цвета счетчика */ inverted?: boolean; /** Тип элемента: 'a', 'span', 'button', 'input', 'div' */ Element?: 'a' | 'span' | 'button' | 'input' | 'div'; } /** * Кнопки шаринга в социальных сетях и мессенджерах. */ declare const Share: ComponentWithCustomElement; export default Share;