import { HTMLAttributes, Key, ReactNode } from "react"; type Optional = Pick, K> & Omit; interface ColumnWithdata { y: number; color?: string; label: ReactNode; key: Key; onClick?(): void; title?: string; } type ColumnWithoutData = Optional; interface Props extends HTMLAttributes { data: (ColumnWithoutData | ColumnWithdata)[]; maxRange?: number; rotateXLabels?: boolean; xAxisTitle: string; yAxisTitle: string; } export default function ColumnChart({ data, maxRange, rotateXLabels, xAxisTitle, yAxisTitle, ...rest }: Props): import("react/jsx-runtime").JSX.Element | undefined; export {};