import React from "react"; interface CircularProgressProps { percentage: number; strokeWidth: number; sqSize: number; color: string; centerContent?: JSX.Element; } declare const CircularProgress: ({ percentage, strokeWidth, sqSize, centerContent, color, }: CircularProgressProps) => React.JSX.Element; export default CircularProgress;