import { ProgressHTMLAttributes, Ref } from 'react';
import { ComponentColor, IComponentBaseProps } from '../types';
export declare const PROGRESS = "progress";
export type ProgressColor = Exclude;
export declare const COLOR_MAP: Record;
export declare const PROGRESS_MAP: {
success: string;
info: string;
warning: string;
error: string;
primary: string;
secondary: string;
accent: string;
neutral: string;
};
export interface ProgressProps extends Omit, "color">, IComponentBaseProps {
ref?: Ref;
color?: ProgressColor;
}