import * as React from 'react'; import type { SeriesId } from '@mui/x-charts/models'; interface RadialLineHighlightElementCommonProps { seriesId: SeriesId; color: string; x: number; y: number; } export type RadialLineHighlightElementProps = (RadialLineHighlightElementCommonProps & { shape: 'circle'; } & Omit, 'ref'>) | (RadialLineHighlightElementCommonProps & { shape: 'cross' | 'diamond' | 'square' | 'star' | 'triangle' | 'wye'; } & Omit, 'ref'>); declare function RadialLineHighlightElement(props: RadialLineHighlightElementProps): React.JSX.Element; declare namespace RadialLineHighlightElement { var propTypes: any; } export { RadialLineHighlightElement };