export declare const useUserPref: () => { saveUserPref: (key: string, value: any, path?: string) => void; getUserPref: (key: string, path?: string) => any; }; export declare const getUserPrefFromLocalStorage: () => any; export declare const setUserPrefFromLocalStorage: (userPref: any) => void;