import { h } from 'preact'; import type { HighlightProps as InternalHighlightProps, HighlightClassNames as InternalHighlightClassNames } from 'instantsearch-ui-components'; export type HighlightClassNames = InternalHighlightClassNames; export type HighlightProps = Omit & { classNames?: Partial; }; export declare function Highlight({ classNames, ...props }: HighlightProps): h.JSX.Element;