import { keyType } from './types'; /** * update store by key * * @param key unique store key (唯一key) * @param nextValue next value */ export declare function mutate(key: K | keyType, nextValue?: S): any;