/** * 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 { LabelProps } from 'recharts'; export type OverlappedLabelProps = LabelProps & { barTextColors?: string[]; data: Record[]; index: number; innerBarTextColor?: string; isOutsideBar?: boolean; label: string; textColor?: string; outsideBarDataKey: string; }; export declare const OverlappedLabel: React.FC; export default OverlappedLabel; //# sourceMappingURL=index.d.ts.map