@mui/x-charts
Version:
The community edition of MUI X Charts components.
9 lines • 616 B
TypeScript
import { type ChartsXReferenceLineProps } from "./ChartsXReferenceLine.js";
import { type ChartsYReferenceLineProps } from "./ChartsYReferenceLine.js";
import { type XOR } from "../internals/ts-generic.js";
type ChartsReferenceLineProps<TValue extends string | number | Date = string | number | Date> = XOR<ChartsXReferenceLineProps<TValue>, ChartsYReferenceLineProps<TValue>>;
declare function ChartsReferenceLine(props: ChartsReferenceLineProps): import("react/jsx-runtime").JSX.Element;
declare namespace ChartsReferenceLine {
var propTypes: any;
}
export { ChartsReferenceLine, type ChartsReferenceLineProps };