export type SparklinesReferenceLineProps = {
    type?: "custom";
    value: number;
} & {
    type?: "max" | "min" | "mean" | "avg" | "median";
    style?: {
        stroke?: string;
        strokeOpacity?: number;
        strokeDasharray?: string;
    };
};
export default function SparklinesReferenceLine(props: SparklinesReferenceLineProps): import("react/jsx-runtime").JSX.Element;
