import { type PropsWithChildren, type Ref, type RefObject } from 'react'; import type { XYChartRef } from '../types/xy-chart.js'; import type { XYChartConfig } from '../utils/xy-chart-configuration.js'; interface XYChartImperativeHandlerBuilderProps { chartRef: Ref; containerRef: RefObject; config: XYChartConfig; } export declare const XYChartImperativeHandlerBuilder: ({ chartRef, containerRef, config, children, }: PropsWithChildren) => import("react").ReactNode; export {};