import React from 'react'; export interface WaterfallChartProps { data: { label: string; value: number; }[]; title?: string; height?: number; } export declare const WaterfallChart: React.FC; //# sourceMappingURL=WaterfallChart.d.ts.map