10 lines
611 B
TypeScript
10 lines
611 B
TypeScript
import * as React from 'react';
|
|
import { ChartsXReferenceLineProps } from "./ChartsXReferenceLine.js";
|
|
import { ChartsYReferenceLineProps } from "./ChartsYReferenceLine.js";
|
|
import { 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): React.JSX.Element;
|
|
declare namespace ChartsReferenceLine {
|
|
var propTypes: any;
|
|
}
|
|
export { ChartsReferenceLine, type ChartsReferenceLineProps }; |