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