import { type PropsWithChildren, type Ref, type RefObject } from 'react'; import type { HistogramChartRef } from '../types/histogram-ref.js'; import type { HistogramChartConfiguration } from '../types/histogram.js'; export interface HistogramChartImperativeHandlerProps { forwardedRef: Ref; chartRef: RefObject; config: HistogramChartConfiguration; } export declare const HistogramChartImperativeHandler: ({ forwardedRef, chartRef, config, children, }: PropsWithChildren) => import("react").ReactNode;