import React from 'react'; /** * Props for {@link HighlightedSearchResultText}. * * @public */ export type HighlightedSearchResultTextProps = { text: string; preTag: string; postTag: string; }; /** * @public */ export declare const HighlightedSearchResultText: (props: HighlightedSearchResultTextProps) => React.JSX.Element;