import * as React from 'react';
import { type RadarSeriesAreaProps } from "./RadarSeriesPlot.types.js";
import { type RadarSeriesPlotClasses } from "./radarSeriesPlotClasses.js";
import { type SeriesId } from "../../models/seriesType/common.js";
import { type HighlightItemData } from "../../internals/plugins/featurePlugins/useChartHighlight/index.js";
interface GetPathPropsParams {
  seriesId: SeriesId;
  classes: RadarSeriesPlotClasses;
  isFaded: (item: HighlightItemData | null) => boolean;
  isHighlighted: (item: HighlightItemData | null) => boolean;
  points: {
    x: number;
    y: number;
  }[];
  fillArea?: boolean;
  color: string;
}
export declare function getPathProps(params: GetPathPropsParams): React.SVGProps<SVGPathElement>;
declare function RadarSeriesArea(props: RadarSeriesAreaProps): import("react/jsx-runtime").JSX.Element;
declare namespace RadarSeriesArea {
  var propTypes: any;
}
export { RadarSeriesArea };