import { type ComponentType } from "react"; import { type IBucketChartProps, type ICoreChartProps } from "../../interfaces/chartProps.js"; import { type IChartDefinition } from "../_commons/chartDefinition.js"; /** * Common hoc for shared logic between all charts, injects contexts and transforms incoming props to BaseChart props according to chart definition * @internal */ export declare const withChart: (chartDefinition: IChartDefinition) => (Chart: ComponentType) => ComponentType; //# sourceMappingURL=withChart.d.ts.map