import * as React from "react"; type SemiCircleProgressProps = { stroke?: string; strokeWidth?: number; background?: string; diameter?: number; orientation?: "up" | "down"; direction?: "left" | "right"; showPercentValue?: boolean; percentage: number; }; declare const SemiCircleProgress: React.FC; export default SemiCircleProgress; //# sourceMappingURL=SemiCircleProgress.d.ts.map