import React from 'react'; import { ComponentWithCustomElement } from 'bloko/common/helpers/types'; interface SuggestTextHintProps { /** Кастомный компонент или ('div', 'span')*/ Element?: 'span' | 'div'; /** Контент */ children?: React.ReactNode; } declare const SuggestTextHint: ComponentWithCustomElement; export default SuggestTextHint;