import { EntityDict } from '../../oak-app-domain'; import { Cache } from 'oak-frontend-base/es/features/cache'; import { Cos } from '../../types/Cos'; /** * 注入一个其它OSS上实现的uploader类 * @param clazz */ export declare function registerCos(clazz: new () => Cos): void; export declare function getCos(origin: string): Cos; export declare function composeFileUrl(options: { application: Partial; extraFile: Partial; style?: string; cache: Cache; }): string;