import type { PropType } from 'vue'; import type { ProgressType, ProgressSize, ProgressStatus } from './type'; export declare const progressProps: { type: { type: PropType; default: string; }; size: { type: PropType; }; percent: { type: NumberConstructor; default: number; }; steps: { type: NumberConstructor; default: number; }; animation: { type: BooleanConstructor; default: boolean; }; strokeWidth: { type: NumberConstructor; }; width: { type: (StringConstructor | NumberConstructor)[]; }; color: { type: (StringConstructor | FunctionConstructor)[]; }; trackColor: StringConstructor; showText: { type: BooleanConstructor; default: boolean; }; status: { type: PropType; default: string; }; formatText: { type: FunctionConstructor; }; };