import * as React from 'react'; import { Size } from '../types'; import { BoxProps } from '../Box'; export declare type LocalProgressBarProps = { /** Sets the color of the progress bar. */ color?: string; /** Sets the max value of the progress bar. */ maxValue?: number; /** Sets the size of the progress bar. */ size?: Size; /** Sets the value of the progress bar. */ value?: number; }; export declare type ProgressBarProps = BoxProps & LocalProgressBarProps; export declare const ProgressBar: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };