import { snapshot } from '@shined/reactive'
snapshot(proxyState, selector?);
// Usage example
snapshot(store.mutate);
snapshot(store.mutate, s => s.count);
snapshot(store.mutate.subObject);
snapshot(store.mutate.subObject, subObject => subObject.subCount);