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