import type { Store } from 'redux'; import type { TMetaState } from '../store-meta/types'; import type { TState as TMainState } from '../store/types'; import type { TSyncStore } from './types'; export declare const SyncStoreFactory: (mainStore: Store, metaStore: Store) => TSyncStore;