/// <reference types="react" />
import { StyleProp, TextStyle } from "react-native";
export interface CircularProgressProps {
    value: number;
    radius?: number;
    duration?: number;
    strokeWidth?: number;
    showLabel?: boolean;
    activeStrokeColor?: string;
    inActiveStrokeColor?: string;
    inActiveStrokeOpacity?: number;
    progressValueColor?: string;
    progressValueStyle?: StyleProp<TextStyle>;
    valueSuffix?: string;
}
declare function CircularProgress(props: CircularProgressProps): import("react").JSX.Element;
export default CircularProgress;
