import { ChartConfig } from '../chart'; export interface BarConfig { /** Field name in the data objects */ dataKey: string; /** Fill color. Defaults to `var(--color-{dataKey})` from ChartConfig. */ fill?: string; /** Corner radius of each bar. @default 4 */ radius?: number; } export interface AssistantChartProps { data: any[]; config: ChartConfig; /** Field used for X axis category labels. @default "month" */ categoryKey?: string; /** * Bar definitions. Defaults to one bar per key in `config`. * Each bar's fill defaults to `var(--color-{dataKey})`. */ bars?: BarConfig[]; /** Custom formatter for X axis tick labels. Defaults to first 3 chars of the value. */ xAxisFormatter?: (value: string) => string; className?: string; } export declare function AssistantChart({ data, config, categoryKey, bars, xAxisFormatter, className, }: AssistantChartProps): import("react/jsx-runtime").JSX.Element;