import React from 'react'; import type { DataValue, Series, XAxisConfig, YAxisConfig } from '../types'; interface ColumnChartContentProps { coordinates: { yStart: number; yEnd: number; xStart: number; xEnd: number; }; data: Array>>; yAxisConfig: Omit; xAxisConfig: XAxisConfig; /** * Called when a bar (column segment) is pressed. */ onBarPress?: (info: { value: number | undefined; xLabel: string; seriesLabel: string; seriesIndex: number; xIndex: number; }) => void; /** * A function that maps series labels to colors. */ colorScale?: (label: string) => string | undefined; } declare const _default: React.MemoExoticComponent<({ coordinates, data, yAxisConfig, xAxisConfig, onBarPress, colorScale, }: ColumnChartContentProps) => React.JSX.Element>; export default _default;