import React from 'react'; /** * Copied from the plugin codes, as plugins are supposed to be external. * The circle dashboard component is used in the checklist to show the overall progress */ declare const CircleGraph: React.FC<{ color?: string; percentage: number; textcolor?: string; min?: number; max?: number; }>; export default CircleGraph; //# sourceMappingURL=CircleGraph.d.ts.map