import { ProgressBarItemProps, ProgressBarProps } from "./ProgressBar.js";

//#region src/ProgressBar/index.d.ts
/**
 * Collection of ProgressBar related components.
 */
declare const ProgressBar: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLSpanElement> & {
  bg?: string;
  className?: string;
} & {
  inline?: boolean;
  barSize?: "small" | "default" | "large";
  animated?: boolean;
} & {
  className?: string;
  progress?: string | number;
  bg?: string;
} & import("react").RefAttributes<HTMLSpanElement>> & {
  Item: import("react").ForwardRefExoticComponent<import("react").HTMLAttributes<HTMLSpanElement> & {
    'aria-label'?: string;
    className?: string;
  } & {
    className?: string;
    progress?: string | number;
    bg?: string;
  } & import("react").RefAttributes<HTMLSpanElement>>;
};
//#endregion
export { ProgressBar, type ProgressBarItemProps, type ProgressBarProps };