import { ComponentWithCustomElement } from 'bloko/common/helpers/types'; interface FormErrorProps { /** Кастомный компонент или ('div', 'span')*/ Element?: 'span' | 'div'; /** Флаг показываем ошибку или нет */ show?: boolean; /** Указывает на строку с компонентом в исходном коде в режиме разработки. Генерируется babel-plugin-react-source */ source?: string; } declare const FormError: ComponentWithCustomElement; export default FormError;