/// import { TextProps } from "@chakra-ui/layout"; import { BarSvgProps, BarDatum } from "@nivo/bar"; export declare type BarChartProps = Partial, "data" | "label">> & { label: string; data: T[]; textComponentProps?: TextProps; }; export declare const BarChart: ({ label, data, height, width, textComponentProps, ...restProps }: BarChartProps) => JSX.Element;