/** * 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 { LineProps, CartesianGridProps, TooltipProps, ResponsiveContainerProps, XAxisProps, YAxisProps } from 'recharts'; import { CategoricalChartProps } from 'recharts/types/chart/generateCategoricalChart'; import { ValueType, NameType } from 'recharts/types/component/DefaultTooltipContent'; export interface LineRawDataProps { label: string; [key: string]: unknown; } export interface LineChartProps { cartesianGridProps?: CartesianGridProps; chartProps?: CategoricalChartProps; children?: React.ReactElement; colors?: string[]; containerStyles?: React.CSSProperties; data: Array; height?: number | string; lineKeys?: Array; lineProps?: Omit; maxHeight?: number | string; responsiveContainerProps?: ResponsiveContainerProps; tooltipProps?: TooltipProps; width?: number | string; xAxisProps?: XAxisProps; yAxisProps?: YAxisProps; } export declare const LineChart: React.FC; export default LineChart; //# sourceMappingURL=index.d.ts.map