import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface ProgressProps extends StyleProps, IdProps {
    value: number | string;
    max?: number | string;
    color?: 'primary' | 'success' | 'error' | 'warning' | 'pattern';
}
export declare const Progress: ({ id, value, max, style, color }: ProgressProps) => import("react/jsx-runtime").JSX.Element;
