import { FieldNames } from 'rc-select/lib/Select'; export interface HighlightOptionsProps { optionList: (Record)[]; keyword: string; fieldNames?: FieldNames; } export declare const getHighlightOptions: ({ optionList, keyword, fieldNames }: HighlightOptionsProps) => Record[]; export declare function StrToNode(props: { str: string; keyword: string; }): JSX.Element;