import { default as React } from 'react'; export type ProgressBarProps = { /** 0–100 percent (if set, mode becomes "determinate") */ value?: number; /** Override mode; if omitted, determinate when `value` is set */ mode?: 'determinate' | 'indeterminate'; /** Thickness of the bar in pixels */ strokeWidth?: number; /** CSS color for the filled bar */ barColor?: string; /** CSS color for the track (background) */ trackColor?: string; }; declare const ProgressBar: React.FC; export { ProgressBar };