export default function useLocalStorageState(key: string, options: { defaultValue: T; }): [T, (value: T | ((prev: T) => T)) => void];