import React from "react"; import { TextStyle } from "react-native"; interface RadialProgressProps { percentage?: number; Radialsize?: number; strokeWidths?: number; percentageTextSize?: number; percentageTextFontWeight?: TextStyle["fontWeight"]; strokeLinecap?: "butt" | "square" | "round"; animationDuration?: number; color?: { low?: string; medium?: string; high?: string; veryHigh?: string; }; } declare const _default: React.NamedExoticComponent; export default _default;