import { PROGRESS_HUES, type ProgressHue } from './progressUtils';
/**
* An indeterminate progress bar component that shows ongoing activity without specific progress.
* Features animated indicators that continuously flow across the bar.
* Built on Radix UI Progress primitive with custom styling and animations.
*
* @example
* ```tsx
*
*
*
*
* ```
*/
declare const ProgressIndeterminate: import("react").MemoExoticComponent> & Readonly<{
/** Additional CSS classes to apply */
className?: string;
}> & import("react").RefAttributes>>;
export { type ProgressHue, PROGRESS_HUES as ProgressHues, ProgressIndeterminate };