import React from 'react'; export type ProgressBarProps = { percent: string; height?: number; isLoading: boolean; barColor: string; trackColor?: string; theme: any; }; /** @type {React.FunctionComponent} */ declare const ProgressBar: ({ percent, height, isLoading, barColor, trackColor, theme }: ProgressBarProps) => React.JSX.Element; export default ProgressBar;