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