import type { Types } from './types'; export declare class StateCache { default: S; current: S; prev: Partial; constructor(defaultState: S); update(partialState: Partial): Partial | undefined; updateProp(key: Key, newValue: S[Key]): boolean; reset(resetData?: S): Partial | undefined; } //# sourceMappingURL=StateCache.d.ts.map