UNPKG

@erosnicolau/animated-text

Version:

Advanced React animated text component with comprehensive animation effects

23 lines 820 B
import React from 'react'; import { AnimationEasing, CoordinationMode, ReduceMotionMode } from '../types'; interface AnimatedTextGroupProviderProps { children: React.ReactNode; groupId: string; groupReplayKey: number; coordinationMode: CoordinationMode; groupStartDelay: number; staggerDelay: number; groupEasing?: AnimationEasing; debugMode: boolean; reduceMotionMode: ReduceMotionMode; isShowReplay: boolean; isShowConfig: boolean; onGroupStart?: () => void; onGroupComplete?: () => void; onChildStart?: (childId: string) => void; onChildComplete?: (childId: string) => void; logTiming: boolean; } export declare const AnimatedTextGroupProvider: React.FC<AnimatedTextGroupProviderProps>; export {}; //# sourceMappingURL=AnimatedTextGroupProvider.d.ts.map