/** * StorageUtils — Scope class for the shared local/session storage bags. * * Prefer `useUtils()` in app code (MatesUtils delegates here). * * @example * ```ts * const { lsStore } = useUtils(); * lsStore.set({ theme: "dark" }); * ``` */ import { type StorageAtomType } from "../Mutables/atom/storageAtom"; export declare class StorageUtils { /** Shared `localStorage["mates_storage"]` atom. */ lsStore: StorageAtomType; /** Shared `sessionStorage["mates_storage"]` atom. */ ssStore: StorageAtomType; constructor(); /** @deprecated Use {@link lsStore} */ get lsAtom(): StorageAtomType; /** @deprecated Use {@link ssStore} */ get ssAtom(): StorageAtomType; } //# sourceMappingURL=StorageUtils.d.ts.map