import { Accessor } from "solid-js"; import { SetLocalStorageValue } from "../../lib/types"; declare global { interface WindowEventMap { "local-storage": CustomEvent; } } export declare function createLocalStorage(key: string, initialValue: T): [Accessor, SetLocalStorageValue];