import type { ChartsDataProviderProps } from "./ChartsDataProvider.js";
import { type ChartsProviderProps } from "../context/ChartsProvider/index.js";
import { type ChartAnyPluginSignature } from "../internals/plugins/models/index.js";
import { type ChartSeriesType } from "../models/seriesType/config.js";
import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js";
import { type ChartsLocalizationProviderProps } from "../ChartsLocalizationProvider/index.js";
export declare const useChartsDataProviderProps: <SeriesType extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<SeriesType>>(inProps: ChartsDataProviderProps<SeriesType, TSignatures> & ChartsLocalizationProviderProps) => {
  children: import("react").ReactNode;
  localeText: Partial<import("../locales/index.js").ChartsLocaleText> | undefined;
  chartProviderProps: ChartsProviderProps<SeriesType, TSignatures>;
  slots: Partial<import("./ChartsDataProvider.js").ChartsDataProviderSlots> | undefined;
  slotProps: Partial<import("./ChartsDataProvider.js").ChartsDataProviderSlotProps> | undefined;
};