import { type PropsWithChildren } from 'react'; import type { NumericalThresholdConfig } from '../../core/types/thresholds.js'; /** * @public */ export type HistogramThresholdIndicatorProps = NumericalThresholdConfig; /** * @public */ export declare const ThresholdIndicator: { (props: PropsWithChildren): null; displayName: string; };