import { PropType } from 'vue'; export type ProgressStatus = 'success' | 'warning' | 'info' | 'danger'; type ProgressType = 'line' | 'circle' | 'dashboard'; type Fn = (percentage: number) => T; type ProgressColorItem = { color: string; percentage: number; }; type ProgressColor = string | Fn | ProgressColorItem[]; export declare const ProgressProps: { type: { type: PropType; default: string; }; percentage: { type: NumberConstructor; }; format: { type: PropType>; }; status: { type: PropType; }; strokeWidth: { type: NumberConstructor; default: number; }; textInside: BooleanConstructor; color: { type: PropType; }; trackColor: { type: PropType; }; width: { type: NumberConstructor; default: number; }; strokeLinecap: { type: PropType<"round" | "inherit" | "butt" | "square">; default: string; }; showText: { type: BooleanConstructor; default: boolean; }; }; export {};