import { type RadarSeriesAreaProps } from "./RadarSeriesPlot.types.js";
import { type RadarClasses } from "../radarClasses.js";
import type { SeriesId, HighlightItemIdentifierWithType } from "../../models/seriesType/index.js";
import type { HighlightState } from "../../hooks/useItemHighlightState.js";
interface GetPathPropsParams {
  seriesId: SeriesId;
  classes: RadarClasses;
  getHighlightState: (item: HighlightItemIdentifierWithType<'radar'> | null) => HighlightState;
  points: {
    x: number;
    y: number;
  }[];
  fillArea?: boolean;
  color: string;
}
export declare function getPathProps(params: GetPathPropsParams): {
  d: string;
  fill: string;
  stroke: string;
  className: string;
  strokeOpacity: number;
  fillOpacity: number;
  strokeWidth: number;
  'data-highlighted': true | undefined;
  'data-faded': true | undefined;
};
declare function RadarSeriesArea(props: RadarSeriesAreaProps): import("react/jsx-runtime").JSX.Element;
declare namespace RadarSeriesArea {
  var propTypes: any;
}
export { RadarSeriesArea };