import { StorageRequest } from './index'; /** * @function writeToStore * @description * A universal write function for localStorage and sessionStorage. * @param {object} request - the storage request object * @param {string} request.target - a string determines which storage to use * @param {string} request.action - a string determines the write action * @param {string} request.key - the key of a storage item * @param {string} request.value - the value of a storage item */ declare function writeToStore(request: StorageRequest): void; export default writeToStore;