import type { CommonChartsReferenceLineProps } from "./common.mjs"; import type { ChartsReferenceLineClasses } from "./chartsReferenceLineClasses.mjs"; export type ChartsXReferenceLineProps = CommonChartsReferenceLineProps & { /** * The x value associated with the reference line. * If defined the reference line will be vertical. */ x: TValue; }; export declare function getXReferenceLineClasses(classes?: Partial): Record<"label" | "line" | "root", string>; declare function ChartsXReferenceLine(props: ChartsXReferenceLineProps): import("react").JSX.Element | null; declare namespace ChartsXReferenceLine { var propTypes: any; } export { ChartsXReferenceLine };