import type { StorageValue } from '../../storage/storageTypes'; /** * Default partialize function if none is provided. It omits top-level store * methods and keeps all other state. */ export declare function omitStoreMethods = Partial>(state: S): PersistedState; export declare function defaultSerializeState(storageValue: StorageValue, shouldUseReplacer: boolean): string; export declare function defaultDeserializeState(serializedState: string, shouldUseReviver: boolean): StorageValue; //# sourceMappingURL=persistUtils.d.ts.map