16 lines
480 B
TypeScript
16 lines
480 B
TypeScript
import * as React from 'react';
|
|
import { ChartsAxisHighlightProps } from "./ChartsAxisHighlight.types.js";
|
|
/**
|
|
* Demos:
|
|
*
|
|
* - [Custom components](https://mui.com/x/react-charts/components/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [ChartsAxisHighlight API](https://mui.com/x/api/charts/charts-axis-highlight/)
|
|
*/
|
|
declare function ChartsAxisHighlight(props: ChartsAxisHighlightProps): React.JSX.Element;
|
|
declare namespace ChartsAxisHighlight {
|
|
var propTypes: any;
|
|
}
|
|
export { ChartsAxisHighlight }; |