/** * A parsed shared entry. Copy one only by spread or a computed key: `Object.assign` * and plain assignment reach the `__proto__` accessor on `Object.prototype`, which * drops that hook key silently and, for an object value, reparents the entry so * that every later lookup on it inherits keys nobody stored. */ export type PersistedEntry = Record; export declare function hasOwnPersistedKey(entry: PersistedEntry, key: string): boolean; export default function parsePersistedEntry(entry: string | undefined): PersistedEntry; //# sourceMappingURL=parse-persisted-entry.d.ts.map