import * as React from "react";
import { type HTMLMotionProps, type Transition, type UseInViewOptions } from "motion/react";
interface HighlightTextProps extends HTMLMotionProps<"span"> {
    text: string;
    inView?: boolean;
    inViewMargin?: UseInViewOptions["margin"];
    inViewOnce?: boolean;
    transition?: Transition;
}
declare const HighlightText: React.ForwardRefExoticComponent<Omit<HighlightTextProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
export { HighlightText, type HighlightTextProps };
