import { ChartBaseProps } from './Chart'; export interface BarSeries { /** Field name holding this series' measure. */ key: string; name: string; color?: string; } export interface BarChartProps extends ChartBaseProps { /** Field name holding the category label. */ xKey: string; series: readonly BarSeries[]; orientation?: 'vertical' | 'horizontal'; stacked?: boolean; title?: string; } export declare function BarChart({ xKey, series, orientation, stacked, title, ...rest }: BarChartProps): import("react").JSX.Element;