import { type SxProps } from '@mui/material/styles';
export interface ChartsAxisHighlightValueItemProps {
  x: number;
  y: number;
  formattedValue: string;
  position: 'top' | 'right' | 'bottom' | 'left';
  minCoord: number;
  maxCoord: number;
  space: number;
  sx?: SxProps;
}
declare function ChartsAxisHighlightValueItem(props: ChartsAxisHighlightValueItemProps): import("react/jsx-runtime").JSX.Element;
export { ChartsAxisHighlightValueItem };