import React from 'react'; import { Point } from "../../index"; declare type Props = { size: number; points: readonly Point[]; lineColor: string; withFill: boolean; }; declare type Segment = { type: 'solid' | 'dashed'; points: readonly Point[]; }; export declare const CENTER_POINT: { xPercent: number; yPercent: number; label: null; axisName: string; originalValue: null; }; export declare const divideBySegments: (points: readonly Point[]) => readonly Segment[]; export declare const RadarChartFigure: React.FC; export {};