import { type PropsWithChildren } from 'react'; import type { XYChartVariantsInternal } from '../types/xy-chart-internals.js'; import { type XYChartData } from '../types/xy-chart.js'; interface XYChartChartDataProviderProps { seriesVariantsProps: XYChartVariantsInternal[]; data: XYChartData[]; } export declare const XYChartChartDataProvider: { ({ seriesVariantsProps, data, children, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};