import React from "react"; import { XAxisTickVariant } from "../types"; import { PaletteName } from "../utils/PalletUtils"; import { LineChartData, LineChartVariant } from "./types"; export interface LineChartProps { data: T; categoryKey: keyof T[number]; theme?: PaletteName; customPalette?: string[]; variant?: LineChartVariant; tickVariant?: XAxisTickVariant; grid?: boolean; legend?: boolean; icons?: Partial>; isAnimationActive?: boolean; showYAxis?: boolean; xAxisLabel?: React.ReactNode; yAxisLabel?: React.ReactNode; className?: string; height?: number; width?: number; strokeWidth?: number; } export declare const LineChart: ({ data, categoryKey, theme, customPalette, variant: lineChartVariant, tickVariant, grid, icons, isAnimationActive, showYAxis, xAxisLabel, yAxisLabel, legend, className, height, width, strokeWidth, }: LineChartProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LineChart.d.ts.map