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