UNPKG

697 BTypeScriptView Raw
1import type { SelectProps } from 'antd';
2import React from 'react';
3/**
4 * 在一段文本中高亮显示指定的关键词,将文本和匹配项分别处理并放入数组中,最终返回包含高亮文本的组件。
5 * 在组件中使用了正则表达式来匹配关键词。
6 * 在渲染文本时,使用了React.createElement来创建元素。
7 */
8export declare const Highlight: React.FC<{
9 /**
10 * 要高亮的文本
11 */
12 label: string;
13 /**
14 * 高亮的关键词数组
15 */
16 words: string[];
17}>;
18export declare const ProHelpSelect: React.FC<Omit<SelectProps, 'onSearch' | 'optionFilterProp' | 'options' | 'filterOption'> & {
19 iconClassName?: string;
20}>;