import type { Hit } from '../types';
export type SnippetOptions = {
    attribute: string | string[];
    highlightedTagName?: string;
    hit: Partial<Hit>;
    cssClasses?: {
        highlighted?: string;
    };
};
/**
 * @deprecated use html tagged templates and the Snippet component instead
 */
export default function snippet({ attribute, highlightedTagName, hit, cssClasses, }: SnippetOptions): string;
