import { Dispatch, SetStateAction } from './types'; /** * store for one key */ export declare class Store { state: S; setters: Dispatch>[]; constructor(value: any); private getNextState; setState: (key: any, state: any, value: any) => any; }