/// import type { StoredDocSearchHit } from './types'; interface SnippetProps { hit: TItem; attribute: string; tagName?: string; [prop: string]: unknown; } export declare function Snippet({ hit, attribute, tagName, ...rest }: SnippetProps): import("react").DOMElement<{ dangerouslySetInnerHTML: { __html: any; }; }, Element>; export {};