import type { Store } from '../../types'; type Watcher = (newValue: T, oldValue: T) => void; export default function watch(store: Store, watcher: Watcher): import("svelte/store").Unsubscriber; export {};