import { FlexboxProps } from '@lobehub/ui'; import { ReactNode } from 'react'; export interface ProgressBarProps extends FlexboxProps { bgColors?: string; color?: string; showAnimation?: boolean; size?: number; tooltip?: ReactNode; value: number; } declare const ProgressBar: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default ProgressBar;