/// interface ProgressBarProps { completedBackground?: string; completeFontColor?: string; activeBackground?: string; activeFontColor?: string; incompleteBackground?: string; incompleteFontColor?: string; errorBackground?: string; errorFontColor?: string; labelColor?: string; font?: string; completeLabelColor?: string; activeLabelColor?: string; errorLabelColor?: string; incompleteLabelColor?: string; } declare const ProgressBar: (props: ProgressBarProps) => JSX.Element; export default ProgressBar;