import React from 'react'; export interface ProgressProps extends React.HTMLAttributes { /** Progress variants */ variant?: 'line' | 'circle'; /** The current value of progress */ percent: number; /** Whether to display progress info */ showInfo?: boolean; /** Size of progress bar (only applicable when variant="line") */ size?: 'xs' | 'sm' | 'md' | 'lg'; /** Determine the size of circular progress (only applicable when variant="circle") */ width?: number; /** Width of the circular progress (only applicable when variant="circle") */ strokeWidth?: number; /** Style of the progress linecap (only applicable when variant="circle") */ strokeLinecap?: 'inherit' | 'butt' | 'round' | 'square'; /** Custom color for Progress, available colors option based on tailwind */ color?: string; /** The gap degree of circle progress (only applicable when variant="circle") */ gapDegree?: number; /** Gap postion of circle progress (only applicable when variant="circle") */ gapPosition?: 'top' | 'right' | 'bottom' | 'left'; } /** * A Progress loader show the progression of an operation flow in visual way. */ declare const Progress: React.ForwardRefExoticComponent>; export default Progress;