import './Threshold.css'; import React from 'react'; import { NotEmptyItem, ScaleLinear } from '../LinearChart'; declare type Props = { scaleX: ScaleLinear; scaleY: ScaleLinear; maxPoints: readonly NotEmptyItem[]; minPoints?: readonly NotEmptyItem[]; maxLabel?: string; minLabel?: string; lineClipPath?: string; }; export declare const THRESHOLD_COLOR = "var(--color-bg-caution)"; export declare const getFillPoints: (maxPoints: readonly NotEmptyItem[], minPoints?: readonly NotEmptyItem[]) => NotEmptyItem[]; export declare const isStraightLine: (items: readonly NotEmptyItem[], isHorizontal: boolean) => boolean; export declare const Threshold: React.FC; export {};