import { default as React } from 'react';
/** @deprecated Use ProgressBarProps instead */
export interface ProgressProps {
/** Progress value (0-100) */
value?: number;
/** Maximum value */
max?: number;
/** Color variant */
variant?: 'default' | 'success' | 'warning' | 'danger';
/** Size variant */
size?: 'sm' | 'md' | 'lg';
/** Show label */
showLabel?: boolean;
/** Custom label */
label?: string;
/** Indeterminate state (loading) */
indeterminate?: boolean;
/** Striped style */
striped?: boolean;
/** Animate stripes */
animated?: boolean;
/** Additional className */
className?: string;
}
/**
* Progress Component
*
* @deprecated Use ProgressBar instead. This component will be removed in v4.0.
*
* Linear progress indicator with support for determinate and indeterminate states.
* Supports color variants, sizes, striped styles, and animations.
*
* @example
* ```tsx
*
* ```
*
* @example
* ```tsx
*
* ```
*
* @example
* ```tsx
*
* ```
*/
export declare const Progress: React.FC;
//# sourceMappingURL=progress.d.ts.map