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