interface Store implements Unit<State>import { type Store } from "https://dotland.deno.dev/x/effector@effector-vue%4023.1.0/packages/effector/index.d.ts"; Type ParametersStatePropertieskind: "store"updates: Event<State>defaultState: StatecompositeName: CompositeNameshortName: stringsid: string | nullMethodsmap<T>(fn: (state: State) => T, config?: { skipVoid?: boolean; }): Store<T>getState(): Statesubscribe(listener: Observer<State> | ((state: State) => any)): Subscriptionwatch<E>(watcher: (state: State, payload: undefined) => any): Subscriptionwatch<E>(trigger: Unit<E>, watcher: (state: State, payload: E) => any): Subscriptiondeprecatedthru<U>(fn: (store: Store<State>) => U): U