import { type PropType, type StyleValue } from 'vue'; export interface ProgressCircleProps { rootStyle?: StyleValue; rootClass?: string; percent?: number; color?: string; trackColor?: string; thickness?: number; size?: string; status?: 'success' | 'warning' | 'error'; } export declare const progressCircleProps: { rootStyle: PropType; rootClass: StringConstructor; percent: { type: NumberConstructor; default: number; }; color: StringConstructor; trackColor: StringConstructor; thickness: { type: NumberConstructor; default: number; }; size: StringConstructor; status: PropType<"success" | "error" | "warning" | undefined>; }; export interface ProgressCircleSlots { default(props: Record): any; }