import React from "react"; interface ProgressRingProps { value: number; total: number; color: string; isDarkMode: boolean; text: string; fontSize?: string; } export default function ProgressRing({ value, total, color, isDarkMode, text, fontSize, }: ProgressRingProps): React.JSX.Element; export {};