UNPKG

react-native-story-component

Version:
11 lines 416 B
import React from 'react'; import { Animated } from 'react-native'; import type { UserStoryItem } from '../index'; interface AnimationBarProps { stories: UserStoryItem[]; currStoryIndex: number; progress: Animated.Value; } declare const AnimationBar: ({ stories, currStoryIndex, progress, }: AnimationBarProps) => React.JSX.Element; export default AnimationBar; //# sourceMappingURL=AnimationBar.d.ts.map