import { type Dispatch, type SetStateAction } from "react"; type SetValue = Dispatch>; export declare function useLocalStorage(key: string, initialValue: T): [T, SetValue]; export {};