UNPKG

@erosnicolau/animated-text

Version:

Advanced React animated text component with comprehensive animation effects

13 lines 551 B
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