import { default as React } from 'react'; export interface SingleSegmentDonutProps { children: React.ReactNode; color: string; percent: number; size?: number; strokeWidth?: number; backgroundStrokeColor?: string; } declare const SingleSegmentDonut: React.FC; export default SingleSegmentDonut;