import { type ReactElement } from 'react'; import type { HistogramChartProps } from './types/histogram-props.js'; import type { HistogramChartRef } from './types/histogram-ref.js'; /** * @public */ export declare const HistogramChartRoot: (props: HistogramChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => import("react").ReactElement | null;