import { AnimationEasing, ComposableEffect } from '../types';
interface AnimatedWordProps {
    wordIndex: number;
    content: string;
    effect: ComposableEffect;
    duration: number;
    easing: AnimationEasing;
    animatedItems: Set<number>;
    className?: string;
}
declare const AnimatedWord: import("react").MemoExoticComponent<({ wordIndex, content, effect, duration, easing, animatedItems, className }: AnimatedWordProps) => import("react/jsx-runtime").JSX.Element>;
export default AnimatedWord;
//# sourceMappingURL=AnimatedWord.d.ts.map