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