import type { BarChartProp } from "../../props/components/charts.prop.js"; export type { BarChartProp, BarChartProp as BarChartProps, } from "../../props/components/charts.prop.js"; /** * Bar chart — compare a value across categories. `stacked` stacks series into one bar; * `horizontal` puts the category axis on the left. */ export declare function BarChart(props: BarChartProp): import("react").JSX.Element;