export type WaterfallType = "increase" | "decrease" | "total"; export type WaterfallChartDatum = { label: string; value: number; type?: WaterfallType; }; type WaterfallChartProps = { data: WaterfallChartDatum[]; width?: number; height?: number; connectors?: boolean; format?: (value: number) => string; label: string; class?: string; }; declare const WaterfallChart: import("svelte").Component; type WaterfallChart = ReturnType; export default WaterfallChart; //# sourceMappingURL=WaterfallChart.svelte.d.ts.map