/**
 * @packageDocumentation Object storage factory implemented with the same interface as browser's local storage.
 */

/**
 * This interface provides access to object storage. It allows, for example, the addition, modification, or deletion of stored data items.
 *
 * @public
 */
export declare function objectStorageFactory(): Storage;

export { }
