import { StorageType, IStorageConfig } from '../../types'; import type { IObjectStorage } from './objectStorage'; export declare class StorageFactory { /** * 组件内部使用 OSS API */ static getStorage(storageType: StorageType): IObjectStorage; /** * 通用的 OSS API */ static newStorage(options: IStorageConfig): IObjectStorage; }