import { type StyleValue } from 'vue';
import { DefaultProps } from '../config';
export interface ProgressCircleProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    percent?: number;
    color?: string;
    trackColor?: string;
    thickness?: number;
    size?: string;
    status?: 'success' | 'warning' | 'error';
}
export declare const defaultProgressCircle: () => DefaultProps<ProgressCircleProps>;
export interface ProgressCircleSlots {
    default?(props: Record<string, never>): any;
}
