/** * The getFromLocalStorage function retrieves a value from localStorage. * @example const data = getFromLocalStorage('user') * @param key string Specify the key of the item in local storage * * @return The parsed item from local storage * */ export declare const getFromLocalStorage: (key: string) => T | null;