type ProgressBarProps = { /** Component classname */ className?: string; /** Progress percentage (0 to 100) */ percent?: number; /** Color of the progress bar */ color?: string; /** Background color of the progress container */ bgcolor?: string; }; declare const ProgressBar: ({ className, percent, color, bgcolor, }: ProgressBarProps) => JSX.Element; export default ProgressBar; //# sourceMappingURL=ProgressBar.d.ts.map