react-native-story-component
Version:
Story component for React Native.
11 lines • 416 B
TypeScript
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