import { AnyObject } from '../declarations'; export type IState = { _sync: { signedIn: boolean; userId: any; streaming: AnyObject; unsubscribe: AnyObject; pathVariables: AnyObject; patching: boolean; syncStack: { inserts: any[]; updates: AnyObject; propDeletions: AnyObject; deletions: any[]; debounceTimer: any; resolves: Promise[]; rejects: Promise[]; }; fetched: AnyObject; stopPatchingTimeout: any; }; [key: string]: any; }; /** * a function returning the state object with ONLY the ._sync prop * * @export * @returns {IState} the state object */ export default function (): IState;