import type { ExtractPropTypes, PropType } from 'vue'; export type StrokeColorType = string | string[] | object; export type GapPositionType = 'top' | 'right' | 'bottom' | 'left'; export type StrokeLinecapType = 'round' | 'butt' | 'square'; export declare const propTypes: { gapDegree: NumberConstructor; gapPosition: { type: PropType; }; percent: { type: PropType; }; prefixCls: StringConstructor; strokeColor: { type: PropType; }; strokeLinecap: { type: PropType; }; strokeWidth: NumberConstructor; trailColor: StringConstructor; trailWidth: NumberConstructor; transition: StringConstructor; }; export type ProgressProps = Partial>;