/** * @jsxRuntime classic * @jsx jsx */ import { type DefaultProgressBarProps } from '../types'; /** * __Progress bar__ * * A progress bar displays the status of a given process. * * - [Examples](https://atlassian.design/components/progress-bar/examples) * - [Code](https://atlassian.design/components/progress-bar/code) * - [Usage](https://atlassian.design/components/progress-bar/usage) */ declare const ProgressBar: ({ appearance, ariaLabel, isIndeterminate, testId, value, }: DefaultProgressBarProps) => JSX.Element; export default ProgressBar;