import { ProgressBaseProps } from './types/Progress.props.ts'; import { FC } from 'react'; /** * Circular SVG `role="progressbar"` with an optional center quantity label * and an outer text label. Shares `size` (xs|sm|md|lg|xl) and `color` tokens * with `Progress`. Requires an accessible name via `label`, `aria-label`, or * `aria-labelledby`. */ declare const CircularProgress: FC; export default CircularProgress;