import StorageDataService from "../storage/StorageDataService";
import StorageLocalService from "../storage/StorageLocalService";
import StorageManagedService from "../storage/StorageManagedService";
import StorageSessionService from "../storage/StorageSessionService";
import StorageSyncService from "../storage/StorageSyncService";
export type StorageType = {
    data: StorageDataService;
    local: StorageLocalService;
    managed: StorageManagedService;
    session: StorageSessionService;
    sync: StorageSyncService;
};
