import type React from 'react'; export interface ProgressProps { readonly dataset?: DOMStringMap; id?: string; className?: string; percent?: number; showInfo?: boolean; strokeWidth?: string; activeColor?: string; backgroundColor?: string; active?: boolean; } export declare const Progress: React.ComponentType;