import { h } from 'preact'; import type { HighlightProps as HighlightUiComponentProps } from '../../components/Highlight/Highlight'; import type { BaseHit, Hit, PartialKeys } from '../../types'; export type HighlightProps> = { hit: THit; attribute: keyof THit | string[]; cssClasses?: HighlightUiComponentProps['classNames']; } & PartialKeys, 'highlightedTagName' | 'nonHighlightedTagName' | 'separator'>; export declare function Highlight>({ hit, attribute, cssClasses, ...props }: HighlightProps): h.JSX.Element;