import { ComponentWithCustomElement } from 'bloko/common/helpers/types'; interface ButtonGroupProps { /** Кастомный компонент*/ Element: 'span' | 'div'; /** На всю длину */ stretched?: boolean; } declare const ButtonGroup: ComponentWithCustomElement; export default ButtonGroup;