/** * 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 * as React from 'react'; import { BarProps, LabelListProps, XAxisProps } from 'recharts'; import { BarChartProps } from "../BarChart"; import { ILabelListData } from "../../types"; export interface OverlappedBarDataProps { color?: string; name?: string; [key: string]: unknown; } export interface OverlappedBarChartProps { barChartProps?: Omit; barKeys: string[]; barProps?: Omit; barTextColors?: string[]; children?: React.ReactElement; colors?: string[]; data: Array; initialBarSize?: number; innerBarTextColor?: string; labelProps?: LabelListProps; xAxisProps?: XAxisProps; } export declare const OverlappedBarChart: React.FC; export default OverlappedBarChart; //# sourceMappingURL=index.d.ts.map