import { StackedChart, StackedChartOptions } from '../core/stacked'; import { Range } from '../types'; export interface UseStackedPlotOptions extends Omit { } export declare function useStackedPlot(options: UseStackedPlotOptions): { containerRef: import('vue').Ref; stack: import('vue').ShallowRef; isReady: import('vue').Ref; fitAll: (opts?: { x?: Range; padding?: number; }) => void | undefined; resetAll: () => void | undefined; };