/** * Get an item from local storage. * @param item Item to get. * @returns The value of the item stored in local storage. */ export declare const getFromLocalStorage: (item: string) => string; /** * Set item to local storage. * @param item Item to set. * @param value Value of the item. */ export declare const setToLocalStorage: (item: string, value: string) => void;