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