import { Ref } from 'vue-demi'; export declare type LocalStateKey = string; export declare function useLocalStorageState(key: string): Ref; export declare function useLocalStorageState(key: string, defaultValue: T | (() => T)): Ref;