import { ComponentWithCustomElement } from 'bloko/common/helpers/types'; import { AllowedElements } from 'bloko/blocks/column/common'; interface ColumnsRowProps { /** Кастомный компонент функция или [доступные теги](#invariants)*/ Element?: AllowedElements; /** Указывает на строку с компонентом в исходном коде в режиме разработки. Генерируется babel-plugin-react-source */ source?: string; } declare const ColumnsRow: ComponentWithCustomElement; export default ColumnsRow;