import Animated from 'react-native-reanimated'; interface Props { d: string; strokeWidth: number; animatedStrokeColor: string; progress: Animated.SharedValue; } declare const AnimatedStroke: ({ d, strokeWidth, animatedStrokeColor, progress, }: Props) => JSX.Element; export default AnimatedStroke;