import React from 'react'; import { IComponentBaseProps, ComponentColor } from '../types'; export declare type ProgressProps = Omit, 'color'> & IComponentBaseProps & { color?: ComponentColor; }; declare const Progress: React.ForwardRefExoticComponent, "color"> & IComponentBaseProps & { color?: "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; } & React.RefAttributes>; export default Progress;