import React from 'react'; import type { BasePlotProps, Theme } from '../types'; type WaterfallDataItem = { category: string; value?: number; isTotal?: boolean; isIntermediateTotal?: boolean; [key: string]: string | number | boolean | undefined; }; type WaterfallPalette = { positiveColor?: string; negativeColor?: string; totalColor?: string; }; type WaterfallStyle = { backgroundColor?: string; palette?: WaterfallPalette; }; export type WaterfallProps = BasePlotProps & Theme & { style?: WaterfallStyle; axisXTitle?: string; axisYTitle?: string; }; declare const Waterfall: (props: WaterfallProps) => React.JSX.Element; export default Waterfall;