/// import type { ChartProps, Direction, LabelFormatter } from '@shopify/polaris-viz-core'; import type { ComparisonMetricProps } from '../ComparisonMetric'; import type { LegendPosition, RenderLegendContent } from '../../types'; import type { Size } from './types'; export declare type SimpleNormalizedChartProps = { comparisonMetrics?: ComparisonMetricProps[]; labelFormatter?: LabelFormatter; legendPosition?: LegendPosition; seriesNameFormatter?: LabelFormatter; direction?: Direction; size?: Size; showLegend?: boolean; renderLegendContent?: RenderLegendContent; } & ChartProps; export declare function SimpleNormalizedChart(props: SimpleNormalizedChartProps): JSX.Element; //# sourceMappingURL=SimpleNormalizedChart.d.ts.map