import { type StyleProp, type ViewProps, type ViewStyle } from 'react-native'; type ProgressProps = ViewProps & { /** 0–100 */ value?: number | null; indicatorClassName?: string; indicatorStyle?: StyleProp; }; /** * Web-only Progress implementation. * Pure View + CSS width transition, no reanimated and no @rn-primitives. * The native sibling (`progress.tsx`) keeps the animated + accessible * @rn-primitives implementation for iOS/Android. */ declare function Progress({ className, value, indicatorClassName, indicatorStyle, ...props }: ProgressProps): import("react/jsx-runtime").JSX.Element; export { Progress }; export type { ProgressProps }; //# sourceMappingURL=progress.web.d.ts.map