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