import { ComponentWithCustomElement, InnerRef } from 'bloko/common/helpers/types'; interface FormItemProps { /** Флаг для включения обертки элементов формы: radio, checkbox */ baseline?: boolean; /** Флаг для включения обертки элементов формы: tags, link-switch. */ text?: boolean; /** Кастомный компонент или ('div', 'span', 'section') */ Element?: 'div' | 'span' | 'section'; /** Реф для элемента */ innerRef?: InnerRef; } declare const FormItem: ComponentWithCustomElement; export default FormItem;