import { MixedChartProps } from './interfaces';
export { MixedChartProps };
declare function MixedChart<T extends number | string | Date>({ height, xScaleType, yScaleType, highlightedSeries: controlledHighlightedSeries, visibleSeries: controlledVisibleSeries, series: externalSeries, onFilterChange, onHighlightChange: controlledOnHighlightChange, i18nStrings, yDomain, xTitle, yTitle, stackedBars, hideFilter, additionalFilters, hideLegend, legendTitle, statusType, detailPopoverSize, empty, noMatch, errorText, loadingText, recoveryText, onRecoveryClick, ...props }: MixedChartProps<T>): JSX.Element;
export default MixedChart;
