import { WaykeStore } from './store'; export declare const unregisterAllSubscriptions: () => void; type FieldPath = string | number | Array; declare const watch: (store: WaykeStore, path: FieldPath, callback: (newValue: T, oldValue: T, pathToField: FieldPath) => void, doNotRegister?: boolean) => (() => void) | undefined; export default watch;