import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; declare const progressVariants: (props?: ({ size?: "sm" | "md" | "lg" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface ProgressProps extends React.HTMLAttributes, VariantProps { /** Progress value (0-100) */ value?: number; /** Maximum value */ max?: number; /** Color variant */ variant?: 'default' | 'success' | 'warning' | 'error'; /** Show percentage text */ showValue?: boolean; } export declare const Progress: React.ForwardRefExoticComponent>; export interface CircularProgressProps extends React.HTMLAttributes { /** Progress value (0-100) */ value?: number; /** Size of the circle */ size?: number; /** Stroke width */ strokeWidth?: number; /** Color variant */ variant?: 'default' | 'success' | 'warning' | 'error'; /** Show percentage text */ showValue?: boolean; } export declare const CircularProgress: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=Progress.d.ts.map