import type { HistogramChartRef } from './types/histogram-ref.js'; import type { HistogramChartConfiguration } from './types/histogram.js'; export interface _HistogramChartProps { config: HistogramChartConfiguration; } export declare const HistogramChart: (props: _HistogramChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null;