import React from "react"; import { ReferenceLineProps } from "recharts"; interface CustomizedReferenceLineProps extends ReferenceLineProps { y: number; strokeColor: string; label: string; } export declare const CustomizedReferenceLine: React.FC; export {};