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