import { type RadarClasses } from "../radarClasses.mjs";
export interface RadarAxisHighlightProps {
  /**
   * A CSS class name applied to the root element.
   */
  className?: string;
  /**
   * Override or extend the styles applied to the component.
   */
  classes?: Partial<Pick<RadarClasses, 'axisHighlightRoot' | 'axisHighlightLine' | 'axisHighlightDot'>>;
}
declare function RadarAxisHighlight(props: RadarAxisHighlightProps): import("react/jsx-runtime").JSX.Element | null;
declare namespace RadarAxisHighlight {
  var propTypes: any;
}
export { RadarAxisHighlight };