import React from 'react'; import * as Progress from '@radix-ui/react-progress'; declare const ProgressBar: React.ForwardRefExoticComponent<{ value: number; max?: number; getValueLabel?(value: number, max: number): string; size?: "small" | "medium" | "large"; color?: "highlight" | "interactive" | "success" | "critical"; animated?: boolean; ariaLabelledBy?: string; customColor?: { backgroundColor: string; indicatorColor: string; }; } & Progress.ProgressProps & React.RefAttributes>; export { ProgressBar };