import { SkuCardConfig, SkuSelectionState } from '../types'; declare const actions: { /** 更新数据源 */ updateDataSource: (dataSource: any) => void; /** 更新原始值 */ updateValue: (value: Record) => void; /** 更新配置 */ updateConfig: (config: any) => void; /** 更新符号 */ updateSymbol: (symbol: string) => void; /** 更新Selector数据源 */ updateSelectorDataSource: (selectorDataSource: any[]) => void; /** 更新Selector识别的值 */ updateSelectorValue: (selectorValue: Record) => void; /** 更新 SKU Card 配置 */ updateSkuCardConfig: (skuCardConfig: SkuCardConfig) => void; /** 更新自定义配置 */ updateCustomConfig: (customConfig: Partial) => void; /** 清空整个store的值 */ clearStore: () => void; }; export default actions;