import { CSSProperties } from 'react'; import { ProgressProps } from '../shared/types'; export type ProgressBarProps = ProgressProps & { /** Target the styles of the label */ labelStyle?: Readonly; /** Visually hide the label */ hideLabel?: boolean; size?: 'small' | 'medium'; }; /** - Built on top of [HTML's `` element](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress). - `id` is required to associate the progress meter with the label. */ export declare function ProgressBar({ hideLabel, labelStyle, size, ...props }: ProgressBarProps): import("react/jsx-runtime").JSX.Element; export default ProgressBar;