import * as react from 'react'; import { ViewStyle } from 'react-native'; type ProgressTone = "accent" | "success" | "warning" | "danger"; type ProgressSize = "sm" | "md" | "lg"; interface ProgressProps { value: number; tone?: ProgressTone; size?: ProgressSize; color?: string; trackColor?: string; style?: ViewStyle; } declare function Progress({ value, tone, size, color, trackColor, style }: ProgressProps): react.JSX.Element; export { Progress, type ProgressProps, type ProgressSize, type ProgressTone };