import type { TMetaState } from '../store-meta/types'; import type { TState } from '../store/types'; export declare type TMetaSubState = Pick; export declare type TMainSubState = Pick; export declare type TSyncState = TMainSubState & TMetaSubState; export declare type TSyncStore = { setState: (state: unknown) => void; subscribe: (observer: (state: TSyncState) => void) => void; };