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