import { View, type ViewStyle, type StyleProp } from 'react-native'; import { progressBarStyles } from './styles'; interface ProgressBarProps { value: number; style?: StyleProp; tintColor: string | undefined; } function ProgressBar({ value, style, tintColor }: ProgressBarProps) { return ( ); } export default ProgressBar;