import React from 'react'; import { NormalTypes } from 'components/utils/prop-types'; export declare type ProgressColors = { [key: number]: string; }; interface Props { value?: number; max?: number; fixedTop?: boolean; fixedBottom?: boolean; colors?: ProgressColors; type?: NormalTypes; className?: ''; } declare const defaultProps: { value: number; max: number; type: "default" | "secondary" | "success" | "warning" | "error"; fixedTop: boolean; fixedBottom: boolean; className: string; }; declare type NativeAttrs = Omit, keyof Props>; export declare type ProgressProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Pick>; export default _default;