import { AdaptableBlotterState } from './Interface/IAdaptableStore'; import { ConfigState } from '../../PredefinedConfig/ConfigState'; export declare function MergeStateFunction(oldState: any, newState: any): any; export declare function MergeState(oldState: any, newState: any): any; declare type TypeReducer = (state: AdaptableBlotterState, action: { type: string; State?: { [s: string]: ConfigState; }; }) => AdaptableBlotterState; export declare const mergeReducer: (rootReducer: TypeReducer, LOAD_STATE_TYPE: string) => TypeReducer; export {};