import { type ViewStyle, type StyleProp } from 'react-native'; interface ProgressBarProps { value: number; style?: StyleProp; tintColor: string | undefined; } declare function ProgressBar({ value, style, tintColor }: ProgressBarProps): import("react/jsx-runtime").JSX.Element; export default ProgressBar; //# sourceMappingURL=ProgressBar.d.ts.map