/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import { BarProps, LabelListProps } from 'recharts'; import { BarChartProps } from "../BarChart"; import { DataProps } from "../BarChart/types"; import { ILabelListData } from "../../types"; export interface StackedBarChartProps { barChartProps?: Omit; barKeys?: Array>; barProps?: BarProps; children?: React.ReactElement; colors?: string[]; customizeBarText?: (index: number) => React.CSSProperties; data: Array; labelListProps?: LabelListProps; setTooltipBarId?: (value: string | undefined) => void; subLabelProps?: LabelListProps; subLabels?: Array; tooltipBarId?: string; } export declare const StackedBarChart: React.FC; export default StackedBarChart; //# sourceMappingURL=index.d.ts.map