import { XYChartRef } from './types/xy-chart.js'; import type { XYChartConfig } from './utils/xy-chart-configuration.js'; interface XYChartProps { config: XYChartConfig; } export declare const XYChart: (props: XYChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => import("react").ReactElement | null; export {};