/** * LocalStorage-backed signals. */ import { Signal } from './core'; /** * Creates a signal that persists to localStorage. * * @template T - The type of the signal value * @param key - The localStorage key * @param initialValue - The initial value if not found in storage * @returns A Signal that syncs with localStorage (falls back to in-memory if unavailable) */ export declare const persistedSignal: (key: string, initialValue: T) => Signal; //# sourceMappingURL=persisted.d.ts.map