import React from 'react'; import type { PartialKeys } from '../types'; import type { HighlightProps as HighlightUiComponentProps } from '../ui/Highlight'; import type { BaseHit, Hit } from 'instantsearch.js'; export type HighlightProps> = { hit: THit; attribute: keyof THit | string[]; } & PartialKeys, 'highlightedTagName' | 'nonHighlightedTagName' | 'separator'>; export declare function Highlight>({ hit, attribute, highlightedTagName, nonHighlightedTagName, separator, ...props }: HighlightProps): React.JSX.Element;