import { AreaChartProps } from './interfaces'; import { ChartModel } from './model'; interface ChartContainerProps extends Pick, 'xTitle' | 'yTitle' | 'detailPopoverSize' | 'ariaLabel' | 'ariaLabelledby' | 'ariaDescription' | 'i18nStrings'> { model: ChartModel; autoWidth: (value: number) => void; } declare const _default: typeof ChartContainer; export default _default; declare function ChartContainer({ model, autoWidth, xTitle, yTitle, detailPopoverSize, ariaLabel, ariaLabelledby, ariaDescription, i18nStrings: { xTickFormatter, yTickFormatter, detailTotalFormatter, detailTotalLabel, chartAriaRoleDescription, xAxisAriaRoleDescription, yAxisAriaRoleDescription, detailPopoverDismissAriaLabel, }, }: ChartContainerProps): JSX.Element; //# sourceMappingURL=chart-container.d.ts.map