UNPKG

react-instantsearch

Version:
8 lines (7 loc) 457 B
import React from 'react'; import type { HighlightProps as InternalHighlightProps, HighlightClassNames as InternalHighlightClassNames } from 'instantsearch-ui-components'; export type HighlightClassNames = InternalHighlightClassNames; export type HighlightProps = Omit<InternalHighlightProps, 'classNames'> & { classNames?: Partial<HighlightClassNames>; }; export declare function Highlight({ classNames, ...props }: HighlightProps): React.JSX.Element;