import React from 'react'; import type { CircularProgressProps } from './types'; /** * CircularProgress — MD3 circular progress indicator. * * Supports two variants: * - `indeterminate`: rotation loop + optional arc-length oscillation (shrink). * - `determinate`: SVG arc sized via strokeDashoffset proportional to `value`. * * Uses react-native-svg / for accurate arc rendering. * All Reanimated animation worklets are gated on `!useReducedMotionValue()`. */ declare const CircularProgress: React.NamedExoticComponent; export { CircularProgress }; //# sourceMappingURL=CircularProgress.d.ts.map