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