import React from 'react'; import { SearchBarAssociationHighlightConfig } from './type'; /** * 高亮搜索候选项中,包含的关键字 * */ export declare function highlightWithContainMode(config: SearchBarAssociationHighlightConfig): React.ReactNode[]; /** * 高亮搜索候选项和关键字的最长前缀公共字符串 * */ export declare function highlightWithPrefixMode(config: SearchBarAssociationHighlightConfig): string | (string | JSX.Element)[];