import React from 'react'; import { type CustomProgressBarProps } from '../types'; /** * __Transparent progress bar__ * * A transparent progress bar is used on bold backgrounds to maintain suitable contrast. * * - [Examples](https://atlassian.design/components/progress-bar/transparent-progress-bar/examples) * - [Code](https://atlassian.design/components/progress-bar/transparent-progress-bar/code) */ declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element; export default TransparentProgressBar;