UNPKG

react-dadata

Version:

React-компонент для подсказок адресов, организаций и банков с помощью сервиса DaData.ru

12 lines (11 loc) 306 B
import { type ElementType, PureComponent, type ReactNode } from 'react'; interface Props { text: string; words: string | string[]; highlightClassName?: string; tagName?: ElementType; } export declare class HighlightWords extends PureComponent<Props> { render(): ReactNode; } export {};