import { PaletteName } from "../utils/PalletUtils"; import { SingleStackedBarData } from "./types"; export interface SingleStackedBarProps { data: T; categoryKey: keyof T[number]; dataKey: keyof T[number]; theme?: PaletteName; customPalette?: string[]; legend?: boolean; legendVariant?: "default" | "stacked"; className?: string; style?: React.CSSProperties; animated?: boolean; } export declare const SingleStackedBar: ({ data, categoryKey, dataKey, theme, customPalette, legend, legendVariant, className, style, animated, }: SingleStackedBarProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SingleStackedBarChart.d.ts.map