declare const UNPKG_API = "https://unpkg.com";
declare const ALIYUN_API = "https://registry.npmmirror.com";
export type CDN = 'aliyun' | 'unpkg';
export interface CdnApi {
    path: string;
    pkg: string;
    proxy?: CDN;
    version?: string;
}
export declare const genCdnUrl: ({ pkg, version, path, proxy }: CdnApi) => string;
export { ALIYUN_API, UNPKG_API };
