import { type DefaultProps } from '../config'; export interface ProgressCircleProps { percent?: number; color?: string; trackColor?: string; thickness?: number; size?: string; status?: 'success' | 'warning' | 'error'; } export declare const defaultProgressCircleProps: DefaultProps; export interface ProgressCircleSlots { default?(props: Record): any; }