import React from 'react'; export interface MyProgressProps { visible?: boolean; value?: any; percent?: any; onValueRelease?: any; title?: string; style?: any; type?: any; placement?: any; showInfo?: boolean; showTitle?: boolean; color?: any; fontSize?: any; lineHeight?: any; fontWeight?: any; valueColor?: any; valueFontSize?: any; valueLineHeight?: any; valueFontWeight?: any; onChange?: any; backgroundType?: any; valueStyle?: string; prefixText?: string; suffixText?: string; unitText?: string; successIcon?: any; loadingIcon?: any; customContent?: any; strokeColor?: string; } declare const MyProgress: React.ForwardRefExoticComponent>; export default MyProgress;