@mui/x-charts
Version:
The community edition of MUI X Charts components.
17 lines • 574 B
TypeScript
import { type ChartsXAxisProps, type ChartsAxisSlots, type ChartsAxisSlotProps } from "../models/axis.js";
export interface ChartsXAxisSlots extends ChartsAxisSlots {}
export interface ChartsXAxisSlotProps extends ChartsAxisSlotProps {}
/**
* Demos:
*
* - [Axis](https://mui.com/x/react-charts/axis/)
*
* API:
*
* - [ChartsXAxis API](https://mui.com/x/api/charts/charts-x-axis/)
*/
declare function ChartsXAxis(inProps: ChartsXAxisProps): import("react/jsx-runtime").JSX.Element | null;
declare namespace ChartsXAxis {
var propTypes: any;
}
export { ChartsXAxis };