import { StackedChart, StackedChartOptions, StackedPaneConfig } from '../../core/stacked/types'; import { VeloPlotSeries } from './types'; export type SyncableStackedOptions = Omit; export declare function stackedStructureKey(panes: StackedPaneConfig[]): string; export declare function syncStackedTheme(stack: StackedChart, theme: StackedChartOptions["theme"]): void; export declare function syncStackedSyncOptions(stack: StackedChart, sync: StackedChartOptions["sync"]): void; export declare function syncStackedPaneSeries(stack: StackedChart, panes: StackedPaneConfig[], previousSeries: Map>): Map>; export declare function syncStackedOptions(stack: StackedChart, options: SyncableStackedOptions): void;