import { type RadarClasses } from "../radarClasses.js"; 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>; } declare function RadarAxisHighlight(props: RadarAxisHighlightProps): import("react/jsx-runtime").JSX.Element | null; declare namespace RadarAxisHighlight { var propTypes: any; } export { RadarAxisHighlight };