import { StackedChart, StackedChartOptions } from '../core/stacked'; import { Range } from '../types'; export declare function createStackedPlot(options: Omit): { stack: import('svelte/store').Writable; isReady: import('svelte/store').Writable; mount: (container: HTMLDivElement) => void; unmount: () => void; sync: (next: Omit) => void; fitAll: (opts?: { x?: Range; padding?: number; }) => void | undefined; resetAll: () => void | undefined; }; export { createStackedPlot as useStackedPlot };