import { JSX } from 'react/jsx-runtime'; declare const COLOR_VARIANTS: { accent: string; success: string; info: string; warning: string; danger: string; default: string; inherit: string; }; declare const SIZE_VARIANTS: { normal: string; large: string; }; export type ProgressBarColor = keyof typeof COLOR_VARIANTS; export type ProgressBarSize = keyof typeof SIZE_VARIANTS; export interface ProgressValue { value: number; color?: ProgressBarColor; } export interface ProgressBarProps { progress: ProgressValue[]; className?: string; color?: ProgressBarColor; size?: ProgressBarSize; } export declare function ProgressBar(props: ProgressBarProps): JSX.Element; export {}; //# sourceMappingURL=ProgressBar.d.ts.map