import type { ReactElement } from 'react'; import React from 'react'; import type { ViewProps, StyleProp, ViewStyle } from 'react-native'; export interface ProgressCircleProps extends ViewProps { /** * The progress completion percentage: 0-100. */ value: number; renderValue?: (value: number) => React.ReactNode; /** * Set intent for your progress. */ intent?: 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'archived' | 'primary-inverted' | 'success-inverted' | 'warning-inverted' | 'danger-inverted' | 'info-inverted' | 'archived-inverted'; /** * Additional style. */ style?: StyleProp; testID?: string; } declare const ProgressCircle: ({ value, renderValue, intent, style, testID, ...nativeProps }: ProgressCircleProps) => ReactElement; export default ProgressCircle;