import React from 'react'; import { NormalTypes } from "../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: "secondary" | "success" | "error" | "warning" | "default"; 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;