import * as React from 'react'; import { type SeriesId } from "../models/seriesType/common.js"; interface LineHighlightElementCommonProps { seriesId: SeriesId; color: string; x: number; y: number; } export type LineHighlightElementProps = (LineHighlightElementCommonProps & { shape: 'circle'; } & Omit, 'ref'>) | (LineHighlightElementCommonProps & { shape: 'cross' | 'diamond' | 'square' | 'star' | 'triangle' | 'wye'; } & Omit, 'ref'>); /** * Demos: * * - [Lines](https://mui.com/x/react-charts/lines/) * - [Line demonstration](https://mui.com/x/react-charts/line-demo/) * * API: * * - [LineHighlightElement API](https://mui.com/x/api/charts/line-highlight-element/) */ declare function LineHighlightElement(props: LineHighlightElementProps): import("react/jsx-runtime").JSX.Element; declare namespace LineHighlightElement { var propTypes: any; } export { LineHighlightElement };