import { type ProgressBarProps as RACProgressBarProps } from 'react-aria-components'; import type { CommonProps, LabellableProps } from '../types.js'; export interface ProgressBarProps extends CommonProps, LabellableProps, Pick { /** * The tone of the progress bar. * @default 'base' */ tone?: 'base' | 'success' | 'warning' | 'critical'; /** * Whether the value of the progress bar should be displayed above it. * @default true */ showValue?: boolean; /** A description for the progress bar. */ description?: string; } /** * Visualizes the progress of an operation. * * See [progress bar usage guidelines](https://ui.cimpress.io/components/progress-bar/). */ declare const _ProgressBar: (props: ProgressBarProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _ProgressBar as ProgressBar }; //# sourceMappingURL=progress-bar.d.ts.map