import { SubStorage } from './storage.sub_storage';
/**
 * An insternal class which implements the IStorage interface using the SubStorage implementation
 * object and it's implementation of the info object.
 *
 * @export
 * @abstract
 * @class AbstractBrowserStorage
 * @extends {SubStorage}
 *
 * @author Scott O'Bryan
 * @since 1.0
 */
export declare abstract class AbstractBrowserStorage extends SubStorage {
    constructor(storage: Storage);
}
