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