import { ComponentProps } from 'react'; import { Color } from '../../types.js'; import { ProgressShape, Size } from '../../generated.js'; export type ProgressProps = Omit, "children" | "color"> & { color?: Color | string | null; locale?: string; max?: number; shape?: ProgressShape; showValue?: boolean; size?: Size; value: number; }; export declare function Progress({ "aria-label": ariaLabel, className, color, locale, max, shape, showValue, size, value, ...props }: ProgressProps): import("react").JSX.Element;