import { type PropsWithChildren } from 'react'; import type { CategoricalBarChartConfiguration, CategoricalBarChartProps, InternalCategoricalBarChartConfig } from '../types/categorical-bar-chart.js'; /** * @internal */ export declare const CategoricalBarChartConfigContext: import("react").Context; /** * Provider for the CategoricalBarChart API config that can be shared across charts * @public */ export declare const CategoricalBarChartConfig: import("react").Provider; /** * @internal */ export declare const useCategoricalBarChartConfig: (props: PropsWithChildren) => InternalCategoricalBarChartConfig;