import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface ProgressProps extends BaseProps { percent?: number; strokeWidth?: number; color?: string; activeColor?: string; backgroundColor?: string; active?: boolean; activeMode?: string; duration?: number; } export declare const Progress: React.ComponentType;