/// import type { ChartType, XAxisOptions, ChartProps, YAxisOptions, LabelFormatter } from '@shopify/polaris-viz-core'; import type { LegendPosition, RenderLegendContent } from '../../types'; import type { SimpleBarChartDataSeries } from './types'; export declare type SimpleBarChartProps = { data: SimpleBarChartDataSeries[]; renderLegendContent?: RenderLegendContent; legendPosition?: LegendPosition; seriesNameFormatter?: LabelFormatter; showLegend?: boolean; type?: ChartType; xAxisOptions?: XAxisOptions; yAxisOptions?: YAxisOptions; } & ChartProps; export declare function SimpleBarChart(props: SimpleBarChartProps): JSX.Element; //# sourceMappingURL=SimpleBarChart.d.ts.map