import React from 'react'; import { TextPropSize } from '@consta/uikit/Text'; import { FormatValue } from "../../../_private/types"; import { Axis, RadarChartLabelSize } from "../../index"; declare type Props = { ticks: number; maxValue: number; backgroundColor: string; axesAngles: readonly Axis[]; labelSize: RadarChartLabelSize; formatValueForLabel?: FormatValue; colors?: readonly string[]; activeAxis?: Axis; onChangeActiveAxis: (axis?: Axis) => void; }; export declare const labelTextSizes: Record; export declare const RadarChartAxes: React.FC; export {};