import * as React from 'react'; import { ReactElement } from 'react'; import { Progress as Progress$1 } from '@base-ui/react/progress'; /** * Progress — WealthX Design System * Figma: https://www.figma.com/design/9V9F0NGVsif8LGmEhVjOcT/Design-System---shadcn?node-id=73-1983 * * Base: official shadcn progress (npx shadcn\@latest add progress) * WealthX overrides: sharp corners (no rounded-full), track bg-muted instead of bg-primary/20 */ type ProgressProps = React.ComponentProps & { /** Additional classes applied to the indicator (filled bar). Use to override the default bg-primary colour. */ indicatorClassName?: string; }; declare function Progress({ className, value, indicatorClassName, ...props }: ProgressProps): ReactElement; export { Progress, type ProgressProps };